Skip to content

Commit

Permalink
fixed error message
Browse files Browse the repository at this point in the history
  • Loading branch information
justanhduc committed Oct 30, 2020
1 parent 9a3ec43 commit 177c057
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client.c
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ void c_get_count_running() {
/* Receive the answer */
res = recv_msg(server_socket, &m);
if (res != sizeof(m))
error("Error in get_state - line size");
error("Error in count_running - line size");

switch(m.type)
{
Expand All @@ -697,4 +697,4 @@ void c_get_count_running() {

/* This will never be reached */
return;
}
}

0 comments on commit 177c057

Please sign in to comment.