Made static (to match the prototype).

2003-06-13  Jeffrey Stedfast  <fejj@ximian.com>

	* providers/pop3/camel-pop3-folder.c (pop3_finalize): Made static
	(to match the prototype).

svn path=/trunk/; revision=21468
This commit is contained in:
Jeffrey Stedfast
2003-06-18 17:55:40 +00:00
committed by Jeffrey Stedfast
parent 50cd0309ad
commit 9875794a71
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-06-13 Jeffrey Stedfast <fejj@ximian.com>
* providers/pop3/camel-pop3-folder.c (pop3_finalize): Made static
(to match the prototype).
2003-06-13 Larry Ewing <lewing@ximian.com>
* camel-folder-thread.c (camel_folder_thread_messages_apply):

View File

@ -93,7 +93,7 @@ camel_pop3_folder_get_type (void)
return camel_pop3_folder_type;
}
void
static void
pop3_finalize (CamelObject *object)
{
CamelPOP3Folder *pop3_folder = CAMEL_POP3_FOLDER (object);
@ -218,7 +218,7 @@ cmd_uidl(CamelPOP3Engine *pe, CamelPOP3Stream *stream, void *data)
do {
ret = camel_pop3_stream_line(stream, &line, &len);
if (ret>=0) {
if (ret>=0) {
if (strlen(line) > 1024)
line[1024] = 0;
if (sscanf(line, "%u %s", &id, uid) == 2) {