diff src/protocols/gg/lib/dcc.c @ 12323:fc464a0abccc

[gaim-migrate @ 14627] Function prototypes need to be of the form foo(void); instead of foo(); for function that don't take any arguments. This allows the compiler to detect mistakes were someone passes arguments to such a function. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sun, 04 Dec 2005 18:19:56 +0000
parents 9cbc5967fbfd
children
line wrap: on
line diff
--- a/src/protocols/gg/lib/dcc.c	Sun Dec 04 18:19:06 2005 +0000
+++ b/src/protocols/gg/lib/dcc.c	Sun Dec 04 18:19:56 2005 +0000
@@ -1,4 +1,4 @@
-/* $Id: dcc.c 14520 2005-11-25 00:32:45Z rlaager $ */
+/* $Id: dcc.c 14627 2005-12-04 18:19:56Z rlaager $ */
 
 /*
  *  (C) Copyright 2001-2002 Wojtek Kaniewski <wojtekka@irc.pl>
@@ -94,7 +94,7 @@
  *  - unix - czas w postaci unixowej
  *  - filetime - czas w postaci windowsowej
  */
-void gg_dcc_fill_filetime(uint32_t ut, uint32_t *ft)
+static void gg_dcc_fill_filetime(uint32_t ut, uint32_t *ft)
 {
 #ifdef __GG_LIBGADU_HAVE_LONG_LONG
 	unsigned long long tmp;