forked from AuroraMiddleware/gtk
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.
This commit is contained in:
parent
1b8d06da2d
commit
0ee14211b1
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user