diff mcabber/mcabber/roster.c @ 1729:e6e89b1d7831

Minor style and header updates
author Mikael Berthe <mikael@lilotux.net>
date Sun, 28 Feb 2010 15:19:27 +0100
parents 15e6b21df606
children b135572fcd26
line wrap: on
line diff
--- a/mcabber/mcabber/roster.c	Sun Feb 28 14:15:38 2010 +0100
+++ b/mcabber/mcabber/roster.c	Sun Feb 28 15:19:27 2010 +0100
@@ -1,7 +1,7 @@
 /*
  * roster.c     -- Local roster implementation
  *
- * Copyright (C) 2005-2009 Mikael Berthe <mikael@lilotux.net>
+ * Copyright (C) 2005-2010 Mikael Berthe <mikael@lilotux.net>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -168,7 +168,6 @@
 
 // Resources are sorted in ascending order
 static gint resource_compare_prio(res *a, res *b) {
-  //return (a->prio - b->prio);
   if (a->prio < b->prio) return -1;
   else                   return 1;
 }