diff src/md5-util.c @ 1346:c9949c19a6d0

No space between function name and first parenthesis, it eases greping (see CODING).
author zas_
date Sat, 28 Feb 2009 20:48:47 +0000
parents 1646720364cf
children 51d70f62338c
line wrap: on
line diff
--- a/src/md5-util.c	Sat Feb 28 20:24:42 2009 +0000
+++ b/src/md5-util.c	Sat Feb 28 20:48:47 2009 +0000
@@ -34,7 +34,7 @@
 #include "ui_fileops.h"	/* for utf-8 filename conversion */
 
 
-static void md5_transform (guint32 buf[4], const guint32 in[16]);
+static void md5_transform(guint32 buf[4], const guint32 in[16]);
 
 static gint _ie = 0x44332211;
 static union _endian { gint i; gchar b[4]; } *_endian = (union _endian *)&_ie;