Skip to content

Commit

Permalink
Fix missing semicolon in previous
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakuje committed Sep 11, 2020
1 parent 806a6bf commit 5c14826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/virt_cacard.c
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ static gboolean do_socket_send(GIOChannel *source, GIOCondition condition, gpoin
g_return_val_if_fail(condition & G_IO_OUT, FALSE);
if (condition & G_IO_HUP) {
g_debug("Write end of pipe died!\n");
return FALSE
return FALSE;
}

g_io_channel_write_chars(channel_socket, (gchar *)socket_to_send->data, socket_to_send->len, &bw, &error);
Expand Down

0 comments on commit 5c14826

Please sign in to comment.