Skip to content

Commit 5c14826

Browse files
committed
Fix missing semicolon in previous
1 parent 806a6bf commit 5c14826

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/virt_cacard.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ static gboolean do_socket_send(GIOChannel *source, GIOCondition condition, gpoin
211211
g_return_val_if_fail(condition & G_IO_OUT, FALSE);
212212
if (condition & G_IO_HUP) {
213213
g_debug("Write end of pipe died!\n");
214-
return FALSE
214+
return FALSE;
215215
}
216216

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

0 commit comments

Comments
 (0)