summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Thompson <resiak@soc.pidgin.im>2007-08-01 21:16:34 +0000
committerWill Thompson <resiak@soc.pidgin.im>2007-08-01 21:16:34 +0000
commita60d01475870d1fd716d350016b66a20848f0c3f (patch)
treed0e6236d8f610eef542e86db268159e230f52af1
parentdccef22dcd2e485a15761a0b35aaec5b99f20cc2 (diff)
Squash a (correct) warning about an uninitialized variable.
-rw-r--r--src/connection-presence.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection-presence.c b/src/connection-presence.c
index c1ab160..7fc4c51 100644
--- a/src/connection-presence.c
+++ b/src/connection-presence.c
@@ -228,7 +228,7 @@ _set_own_status (GObject *obj,
HazeConnection *self = HAZE_CONNECTION (obj);
const char *status_id = NULL;
GValue *message_v;
- char *message;
+ char *message = NULL;
GList *attrs = NULL;
if (status)