aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-mktemp.h
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2004-07-14 23:19:58 +0800
committerDan Winship <danw@src.gnome.org>2004-07-14 23:19:58 +0800
commit109c235bb23836ebe9a95bd5862a0e7ead568236 (patch)
tree90e68bc738c7d2a7879c6240f4a937ec2091f951 /e-util/e-mktemp.h
parent1dcf7c2a308edb953759b4abd5e0f8e1f94050dd (diff)
downloadgsoc2013-evolution-109c235bb23836ebe9a95bd5862a0e7ead568236.tar
gsoc2013-evolution-109c235bb23836ebe9a95bd5862a0e7ead568236.tar.gz
gsoc2013-evolution-109c235bb23836ebe9a95bd5862a0e7ead568236.tar.bz2
gsoc2013-evolution-109c235bb23836ebe9a95bd5862a0e7ead568236.tar.lz
gsoc2013-evolution-109c235bb23836ebe9a95bd5862a0e7ead568236.tar.xz
gsoc2013-evolution-109c235bb23836ebe9a95bd5862a0e7ead568236.tar.zst
gsoc2013-evolution-109c235bb23836ebe9a95bd5862a0e7ead568236.zip
un-const the return values, since they need to be freed (d): turn off
* e-mktemp.c (e_mktemp, e_mkdtemp): un-const the return values, since they need to be freed (d): turn off debugging (expire_dir_rec): remove debug printfs svn path=/trunk/; revision=26647
Diffstat (limited to 'e-util/e-mktemp.h')
-rw-r--r--e-util/e-mktemp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/e-util/e-mktemp.h b/e-util/e-mktemp.h
index b5eb587d86..14fbb9bcc8 100644
--- a/e-util/e-mktemp.h
+++ b/e-util/e-mktemp.h
@@ -23,10 +23,10 @@
#ifndef __E_MKTEMP_H__
#define __E_MKTEMP_H__
-const char *e_mktemp (const char *template);
+char *e_mktemp (const char *template);
-int e_mkstemp (const char *template);
+int e_mkstemp (const char *template);
-const char *e_mkdtemp (const char *template);
+char *e_mkdtemp (const char *template);
#endif /* __E_MKTEMP_H__ */