forgot to mark the purple_g_checksum_* api as static again cipher_breakout

Thu, 17 Feb 2011 05:02:31 +0000

author
Gary Kramlich <grim@reaperworld.com>
date
Thu, 17 Feb 2011 05:02:31 +0000
branch
cipher_breakout
changeset 31432
057bf7233e54
parent 31431
8ce0c0e12c98
child 31433
74874b2d24f9

forgot to mark the purple_g_checksum_* api as static again

libpurple/ciphers/gchecksum.c file | annotate | diff | comparison | revisions
--- a/libpurple/ciphers/gchecksum.c	Thu Feb 17 00:43:09 2011 +0000
+++ b/libpurple/ciphers/gchecksum.c	Thu Feb 17 05:02:31 2011 +0000
@@ -2,7 +2,7 @@
 
 #if GLIB_CHECK_VERSION(2,16,0)
 
-void
+static void
 purple_g_checksum_init(PurpleCipherContext *context, GChecksumType type)
 {
     GChecksum *checksum;
@@ -11,7 +11,7 @@
     purple_cipher_context_set_data(context, checksum);
 }
 
-void
+static void
 purple_g_checksum_reset(PurpleCipherContext *context, GChecksumType type)
 {
     GChecksum *checksum;
@@ -28,7 +28,7 @@
 #endif
 }
 
-void
+static void
 purple_g_checksum_uninit(PurpleCipherContext *context)
 {
     GChecksum *checksum;
@@ -39,7 +39,7 @@
     g_checksum_free(checksum);
 }
 
-void
+static void
 purple_g_checksum_append(PurpleCipherContext *context, const guchar *data,
                          gsize len)
 {
@@ -58,7 +58,7 @@
         g_checksum_update(checksum, data, len);
 }
 
-gboolean
+static gboolean
 purple_g_checksum_digest(PurpleCipherContext *context, GChecksumType type,
                          gsize len, guchar *digest, gsize *out_len)
 {

mercurial