From 895a0128c1f7869e0d09af681d86ba019315cf7f Mon Sep 17 00:00:00 2001
From: Matthias Andree <matthias.andree@gmx.de>
Date: Fri, 26 Aug 2011 11:23:48 +0200
Subject: Fixup last patch from Thomas, return void rather than NULL.

---
 uid_db.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/uid_db.c b/uid_db.c
index d4009d39..55bdfc7b 100644
--- a/uid_db.c
+++ b/uid_db.c
@@ -458,7 +458,7 @@ struct uid_db_record *last_uid_in_db(struct uid_db *db, char const *id)
 /**  destruction */
 static void free_uid_list(struct uid_db_record *rec)
 {
-    if (!rec) return NULL;
+    if (!rec) return;
 
     /*
       Free the list of uid_db_records starting with
-- 
cgit v1.2.3