From 49e3ac248523797f905cf8c100e5411e7b104f9c Mon Sep 17 00:00:00 2001 From: Stefan Becker Date: Thu, 6 Aug 2009 09:19:18 +0300 Subject: [PATCH] Fix function prototype for sipe_uuid_get_macaddr() Should fix the compilation reported in the SIPE Help forum by guyver111. --- src/uuid.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uuid.h b/src/uuid.h index f2365936..66267102 100644 --- a/src/uuid.h +++ b/src/uuid.h @@ -32,9 +32,9 @@ typedef struct _uuid_t { #pragma pack(pop) -char * generateUUIDfromEPID(const gchar *epid); +char *generateUUIDfromEPID(const gchar *epid); -gchar * sipe_uuid_get_macaddr(); +gchar *sipe_uuid_get_macaddr(const char *ip_address); void printUUID(sipe_uuid_t *uuid, char *string); -- 2.11.4.GIT