projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c44afa
)
* lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
author
Eric Blake
<ebb9@byu.net>
Wed, 1 Nov 2006 16:49:05 +0000
(16:49 +0000)
committer
Eric Blake
<ebb9@byu.net>
Wed, 1 Nov 2006 16:49:05 +0000
(16:49 +0000)
ChangeLog
patch
|
blob
|
history
lib/mkstemp-safer.c
patch
|
blob
|
history
diff --git
a/ChangeLog
b/ChangeLog
index 864c2961d3495f5f9891ccdfa4d5af10755fbabe..14955b0bcfe8d2ed81fd2fe73ceef618841e2f06 100644
(file)
--- a/
ChangeLog
+++ b/
ChangeLog
@@
-1,5
+1,7
@@
2006-11-01 Eric Blake <ebb9@byu.net>
+ * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
+
* m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
2006-10-29 Bruno Haible <bruno@clisp.org>
diff --git
a/lib/mkstemp-safer.c
b/lib/mkstemp-safer.c
index 365b3e6a760b3a65443d3277557a6752dd5345d8..c8c5bbd6e43701eaeab626da1c4edf4e5ce99a00 100644
(file)
--- a/
lib/mkstemp-safer.c
+++ b/
lib/mkstemp-safer.c
@@
-29,7
+29,7
@@
STDERR_FILENO. */
int
-mkstemp_safer (char *templ
ate
)
+mkstemp_safer (char *templ)
{
- return fd_safer (mkstemp (templ
ate
));
+ return fd_safer (mkstemp (templ));
}