diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-01-03 05:32:14 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-01-03 05:32:14 +0800 |
commit | 64ea8d10a87fe73f712963104909f4897b0c4f11 (patch) | |
tree | 1bd873666afef36347bc10b6f9eed57758e68549 /e-util/e-mktemp.c | |
parent | 84c85d8eb70ca06ba9c608a83d1de6c814433c85 (diff) | |
download | gsoc2013-evolution-64ea8d10a87fe73f712963104909f4897b0c4f11.tar.gz gsoc2013-evolution-64ea8d10a87fe73f712963104909f4897b0c4f11.tar.zst gsoc2013-evolution-64ea8d10a87fe73f712963104909f4897b0c4f11.zip |
A bunch of fixes to make e-util build with -DG_DISABLE_DEPRECATED and
2003-01-02 Jeffrey Stedfast <fejj@ximian.com>
A bunch of fixes to make e-util build with -DG_DISABLE_DEPRECATED
and -DGTK_DISABLE_DEPRECATED.
svn path=/trunk/; revision=19210
Diffstat (limited to 'e-util/e-mktemp.c')
-rw-r--r-- | e-util/e-mktemp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-mktemp.c b/e-util/e-mktemp.c index 48a45c0288..baeb9d2577 100644 --- a/e-util/e-mktemp.c +++ b/e-util/e-mktemp.c @@ -65,7 +65,7 @@ get_path (gboolean make) GString *path; path = g_string_new ("/tmp/evolution-"); - g_string_sprintfa (path, "%d-%d", (int) getuid (), (int) getpid ()); + g_string_append_printf (path, "%d-%d", (int) getuid (), (int) getpid ()); if (make) { int ret; |