summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-07-17 15:58:24 -0400
committerMatthias Clasen <mclasen@redhat.com>2015-07-17 16:11:17 -0400
commit0ee14211b117725eff658bf78fbabce9039ab443 (patch)
treec5f036f19b2b7cb3f86c246ec947f6ffe7b5ab03 /modules
parent1b8d06da2d3f9c5615b2e367335e780c3bbb2947 (diff)
downloadgtk+-0ee14211b117725eff658bf78fbabce9039ab443.tar.gz
cups: Annotate a call whose return value we don't care about
We're closing this fd, but we're not going to do anything else if that fails. Annotate to let coverity see this.
Diffstat (limited to 'modules')
-rw-r--r--modules/printbackends/file/gtkprintbackendfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/printbackends/file/gtkprintbackendfile.c b/modules/printbackends/file/gtkprintbackendfile.c
index 44c3ffbca6..6d98d0f7d5 100644
--- a/modules/printbackends/file/gtkprintbackendfile.c
+++ b/modules/printbackends/file/gtkprintbackendfile.c
@@ -390,7 +390,7 @@ file_print_cb_locked (GtkPrintBackendFile *print_backend,
GtkRecentManager *recent_manager;
if (ps->target_io_stream != NULL)
- g_output_stream_close (G_OUTPUT_STREAM (ps->target_io_stream), NULL, NULL);
+ (void)g_output_stream_close (G_OUTPUT_STREAM (ps->target_io_stream), NULL, NULL);
if (ps->callback)
ps->callback (ps->job, ps->user_data, error);