aboutsummaryrefslogtreecommitdiff
path: root/libsylph/procmsg.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2009-11-02 09:26:54 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2009-11-02 09:26:54 +0000
commit243e6b84eb31ffd7d1def387ad2c2ec471049aaa (patch)
treef69b065208f537920cb7634c96b4f9ac77896b32 /libsylph/procmsg.c
parente667a6f3d8c6514878e184b1c8541cb5f31083d8 (diff)
more fix for UID more than INT_MAX.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2327 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/procmsg.c')
-rw-r--r--libsylph/procmsg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsylph/procmsg.c b/libsylph/procmsg.c
index 3dde7a0e..d9dacd6d 100644
--- a/libsylph/procmsg.c
+++ b/libsylph/procmsg.c
@@ -1312,7 +1312,7 @@ gchar *procmsg_get_message_file_path(MsgInfo *msginfo)
gchar nstr[16];
path = folder_item_get_path(msginfo->folder);
file = g_strconcat(path, G_DIR_SEPARATOR_S,
- itos_buf(nstr, msginfo->msgnum), NULL);
+ utos_buf(nstr, msginfo->msgnum), NULL);
g_free(path);
}