diff src/queue.c @ 366:41958685480d

Switched to `type *name' style Andrew Koenig's ``C Traps and Pitfalls'' (Ch.2.1) convinced me that it is best to go with the way C had been designed. The ``declaration reflects use'' concept conflicts with a ``type* name'' notation. Hence I switched.
author markus schnalke <meillo@marmaro.de>
date Thu, 22 Sep 2011 15:07:40 +0200
parents b45dc53f2829
children b27f66555ba8
line wrap: on
line diff
--- a/src/queue.c	Wed Sep 14 12:20:40 2011 +0200
+++ b/src/queue.c	Thu Sep 22 15:07:40 2011 +0200
@@ -189,7 +189,7 @@
 }
 
 gboolean
-queue_delete(gchar * uid)
+queue_delete(gchar *uid)
 {
 	gboolean hdr_ok = TRUE;
 	gboolean dat_ok = TRUE;