summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-10-26 14:35:43 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-10-26 14:35:43 +0000
commitf98d76dabfe6c854acee81615fbdf5f953ae3117 (patch)
treea27acad899db0dd6c2b422d717c053daaf7c31bc
parenta70d0c2efffab60d37885f7225d97324dbf890be (diff)
downloadATCD-f98d76dabfe6c854acee81615fbdf5f953ae3117.tar.gz
Thu Oct 26 14:20:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--CIAO/DAnCE/StaticConfigurator/StaticDAnCEParser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/CIAO/DAnCE/StaticConfigurator/StaticDAnCEParser.cpp b/CIAO/DAnCE/StaticConfigurator/StaticDAnCEParser.cpp
index 8c98c8b1b61..a74f5ee377e 100644
--- a/CIAO/DAnCE/StaticConfigurator/StaticDAnCEParser.cpp
+++ b/CIAO/DAnCE/StaticConfigurator/StaticDAnCEParser.cpp
@@ -92,7 +92,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
Deployment::ContainerImplementationInfos& impl_infos = node_impl_info[0].impl_infos;
- FILE* fp = fopen ("plan.h", "w");
+ FILE* fp = ACE_OS::fopen ("plan.h", "w");
CORBA::ULong i,j,num_containers,num_components;
num_containers = impl_infos.length ();
@@ -156,7 +156,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
}
ACE_OS::fprintf (fp, "};\n\n");
- fclose (fp);
+ ACE_OS::fclose (fp);
return 0;
}