summaryrefslogtreecommitdiff
path: root/ace/ACE.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-18 06:52:40 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-18 06:52:40 +0000
commit0bd058746e97477d18152cb91040353b0c80a7de (patch)
tree61e8573a50957808cfc9136fb72c92fe113e8fdd /ace/ACE.h
parentbf85b3fac1cb36960787d91134e413416e49e68f (diff)
downloadATCD-0bd058746e97477d18152cb91040353b0c80a7de.tar.gz
.
Diffstat (limited to 'ace/ACE.h')
-rw-r--r--ace/ACE.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/ACE.h b/ace/ACE.h
index d00c222296d..badcaa2ace1 100644
--- a/ace/ACE.h
+++ b/ace/ACE.h
@@ -534,11 +534,11 @@ public:
// returns a pointer to the file, else it returns a NULL
// pointer. <type> specifies how the file should be open.
- static ACE_HANDLE open_temp_file (char* name,
+ static ACE_HANDLE open_temp_file (const char *name,
int mode,
int perm = 0);
- // Opening the temp file. File gets unlinked when the it is
- // closed. Cool for having temp files.
+ // Opening the temp file. File is automagically unlinked when it is
+ // closed. This is useful for have temp files.
// = Shield us from Win32's inability to select on STDIN.