Remove accidentally commited spew

2009-02-23  Alexander Larsson  <alexl@redhat.com>

	* glocalfile.c:
	Remove accidentally commited spew



svn path=/trunk/; revision=7903
This commit is contained in:
Alexander Larsson 2009-02-23 15:12:39 +00:00 committed by Alexander Larsson
parent e1b7a25342
commit 319d60e444
2 changed files with 5 additions and 5 deletions

View 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> 2009-02-20 Alexander Larsson <alexl@redhat.com>
* gcontenttype.c: * gcontenttype.c:

View File

@ -619,8 +619,6 @@ g_local_file_get_child_for_display_name (GFile *file,
static const char * static const char *
get_fs_type (long f_type) get_fs_type (long f_type)
{ {
g_print ("get fstype for %ld\n", f_type);
/* filesystem ids taken from linux manpage */ /* filesystem ids taken from linux manpage */
switch (f_type) switch (f_type)
{ {
@ -947,7 +945,6 @@ g_local_file_query_filesystem_info (GFile *file,
#endif #endif
GFileAttributeMatcher *attribute_matcher; GFileAttributeMatcher *attribute_matcher;
g_print ("g_local_file_query_filesystem_info\n");
no_size = FALSE; no_size = FALSE;
#ifdef USE_STATFS #ifdef USE_STATFS
@ -1028,10 +1025,8 @@ g_local_file_query_filesystem_info (GFile *file,
#ifdef USE_STATFS #ifdef USE_STATFS
#if defined(HAVE_STRUCT_STATFS_F_FSTYPENAME) #if defined(HAVE_STRUCT_STATFS_F_FSTYPENAME)
fstype = g_strdup(statfs_buffer.f_fstypename); fstype = g_strdup(statfs_buffer.f_fstypename);
g_print ("using f_fstypename %s\n", fstype);
#else #else
fstype = get_fs_type (statfs_buffer.f_type); fstype = get_fs_type (statfs_buffer.f_type);
g_print ("using f_type %s\n", fstype);
#endif #endif
#elif defined(USE_STATVFS) && defined(HAVE_STRUCT_STATVFS_F_BASETYPE) #elif defined(USE_STATVFS) && defined(HAVE_STRUCT_STATVFS_F_BASETYPE)