Skip to content

Commit d7ae9e2

Browse files
czp182alandekok
authored andcommitted
fix syntax error
(fix(udpfromto.c): fix syntax error 'to = NULL:' -> 'to = NULL;' 177)
1 parent 9794622 commit d7ae9e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/util/udpfromto.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ int recvfromto(int fd, void *buf, size_t len, int flags,
218218
* If the recvmsg() flags aren't defined, fall back to
219219
* using recvfrom().
220220
*/
221-
to = NULL:
221+
to = NULL;
222222
#endif
223223

224224
/*

0 commit comments

Comments
 (0)