Whitespace cleanups.

2008-01-21  Matthias Clasen  <mclasen@redhat.com>

        * glocal*.c:
        * gvolumemanager.c: Whitespace cleanups.

        * glocalfileoutputsteam.c (_g_local_file_output_stream_create):
        Use the right mode when creating the file.



svn path=/trunk/; revision=6341
This commit is contained in:
Matthias Clasen
2008-01-21 14:02:19 +00:00
committed by Matthias Clasen
parent 5fbfef4cb7
commit 54300dde6d
9 changed files with 65 additions and 65 deletions

View File

@@ -256,8 +256,7 @@ g_local_file_input_stream_can_seek (GFileInputStream *stream)
pos = lseek (file->priv->fd, 0, SEEK_CUR);
if (pos == (off_t)-1 &&
errno == ESPIPE)
if (pos == (off_t)-1 && errno == ESPIPE)
return FALSE;
return TRUE;