diff mcabber/src/roster.c @ 952:527d6f234924

Small code cleanup
author Mikael Berthe <mikael@lilotux.net>
date Sat, 26 Aug 2006 21:13:13 +0200
parents a07bd351008b
children 36f7753dfb59
line wrap: on
line diff
--- a/mcabber/src/roster.c	Mon Aug 21 21:28:58 2006 +0200
+++ b/mcabber/src/roster.c	Sat Aug 26 21:13:13 2006 +0200
@@ -65,7 +65,7 @@
   /* For groupchats */
   gchar *nickname;
   gchar *topic;
-  guint8 inside_room;
+  guint inside_room;
 
   /* To keep track of last status message */
   gchar *offline_status_message;
@@ -939,7 +939,7 @@
 
 //  buddy_setinsideroom(buddy, inside)
 // Only for chatrooms
-void buddy_setinsideroom(gpointer rosterdata, guint8 inside)
+void buddy_setinsideroom(gpointer rosterdata, guint inside)
 {
   roster *roster_usr = rosterdata;
 
@@ -948,7 +948,7 @@
   roster_usr->inside_room = inside;
 }
 
-guint8 buddy_getinsideroom(gpointer rosterdata)
+guint buddy_getinsideroom(gpointer rosterdata)
 {
   roster *roster_usr = rosterdata;
   return roster_usr->inside_room;