Remove accidentally commited spew
authorAlexander Larsson <alexl@redhat.com>
Mon, 23 Feb 2009 15:12:39 +0000 (15:12 +0000)
committerAlexander Larsson <alexl@src.gnome.org>
Mon, 23 Feb 2009 15:12:39 +0000 (15:12 +0000)
2009-02-23  Alexander Larsson  <alexl@redhat.com>

* glocalfile.c:
Remove accidentally commited spew

svn path=/trunk/; revision=7903

gio/ChangeLog
gio/glocalfile.c

index 82d5493..c7dca62 100644 (file)
@@ -1,3 +1,8 @@
+2009-02-23  Alexander Larsson  <alexl@redhat.com>
+
+       * glocalfile.c:
+       Remove accidentally commited spew
+
 2009-02-20  Alexander Larsson  <alexl@redhat.com>
 
         * gcontenttype.c:
index 5ee7790..41de4ea 100644 (file)
@@ -619,8 +619,6 @@ g_local_file_get_child_for_display_name (GFile        *file,
 static const char *
 get_fs_type (long f_type)
 {
-  g_print ("get fstype for %ld\n", f_type);
-
   /* filesystem ids taken from linux manpage */
   switch (f_type) 
     {
@@ -947,7 +945,6 @@ g_local_file_query_filesystem_info (GFile         *file,
 #endif
   GFileAttributeMatcher *attribute_matcher;
        
-  g_print ("g_local_file_query_filesystem_info\n");
   no_size = FALSE;
   
 #ifdef USE_STATFS
@@ -1028,10 +1025,8 @@ g_local_file_query_filesystem_info (GFile         *file,
 #ifdef USE_STATFS
 #if defined(HAVE_STRUCT_STATFS_F_FSTYPENAME)
   fstype = g_strdup(statfs_buffer.f_fstypename);
-  g_print ("using f_fstypename %s\n", fstype);
 #else
   fstype = get_fs_type (statfs_buffer.f_type);
-  g_print ("using f_type %s\n", fstype);
 #endif
 
 #elif defined(USE_STATVFS) && defined(HAVE_STRUCT_STATVFS_F_BASETYPE)