Skip to content
Snippets Groups Projects
Commit d47bd396 authored by Guenter Knauf's avatar Guenter Knauf
Browse files

Trial to fix another compiler warning with braces.

parent 6882ae8d
No related branches found
No related tags found
No related merge requests found
......@@ -1182,7 +1182,7 @@ static long tftp_state_timeout(struct connectdata *conn, tftp_event_t *event)
/* there's a typecast below here since 'time_t' may in fact be larger than
'long', but we estimate that a 'long' will still be able to hold number
of seconds even if "only" 32 bit */
return (long) state->max_time-current;
return (long)(state->max_time - current);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment