aboutsummaryrefslogtreecommitdiff
path: root/src/procheader.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-02-28 06:37:23 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-02-28 06:37:23 +0000
commit1976ac750c74858714cae55a01b6703c75529fe0 (patch)
tree43f0c434e9de1e3561fe51a77cdf95be71d0306e /src/procheader.h
parent6afd63f00a030cd2b0123d174d3e57a6c4f5cb10 (diff)
procheader.c: fixed the argument type of buffer length.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@132 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/procheader.h')
-rw-r--r--src/procheader.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/procheader.h b/src/procheader.h
index f03a97be..599324e1 100644
--- a/src/procheader.h
+++ b/src/procheader.h
@@ -1,6 +1,6 @@
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2004 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2005 Hiroyuki Yamamoto
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -43,11 +43,11 @@ struct _Header
};
gint procheader_get_one_field (gchar *buf,
- gint len,
+ size_t len,
FILE *fp,
HeaderEntry hentry[]);
gchar *procheader_get_unfolded_line (gchar *buf,
- gint len,
+ size_t len,
FILE *fp);
GSList *procheader_get_header_list_from_file (const gchar *file);