[gnome-commander] noop: code cleanup



commit ae01389eb685118bafca7fbb6a38a44762acd56f
Author: Piotr Eljasiak <epiotr src gnome org>
Date:   Fri Jun 10 19:18:12 2011 +0200

    noop: code cleanup

 src/history.cc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/history.cc b/src/history.cc
index 6908c9b..2d2d5b1 100644
--- a/src/history.cc
+++ b/src/history.cc
@@ -62,7 +62,7 @@ const gchar *History::first()
     g_return_val_if_fail (pos != NULL, NULL);
 
     if (pos->next)
-        pos = g_list_last(pos);
+        pos = g_list_last (pos);
 
     return (const gchar *) pos->data;
 }
@@ -95,7 +95,7 @@ const gchar *History::last()
     g_return_val_if_fail (pos != NULL, NULL);
 
     if (pos->prev)
-        pos = g_list_first(pos);
+        pos = g_list_first (pos);
 
     return (const gchar *) pos->data;
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]