diff options
Diffstat (limited to 'gio/goutputstream.c')
-rw-r--r-- | gio/goutputstream.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gio/goutputstream.c b/gio/goutputstream.c index d9a672f4b..c302f2814 100644 --- a/gio/goutputstream.c +++ b/gio/goutputstream.c @@ -1079,11 +1079,11 @@ g_output_stream_set_pending (GOutputStream *stream, if (stream->priv->pending) { - /* Translators: This is an error you get if there is already - an operation running against this stream when you try to - start one */ g_set_error (error, G_IO_ERROR, G_IO_ERROR_PENDING, - _("Stream has outstanding operation")); + /* Translators: This is an error you get if there is + * already an operation running against this stream when + * you try to start one */ + _("Stream has outstanding operation")); return FALSE; } |