Skip to content

Commit 342a570

Browse files
committed
Fix emitter GCC warning
This should fix yaml#210
1 parent f8f760f commit 342a570

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/emitter.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
#define WRITE_BREAK(emitter,string) \
5454
(FLUSH(emitter) \
5555
&& (CHECK(string,'\n') ? \
56-
(PUT_BREAK(emitter), \
56+
((void)PUT_BREAK(emitter), \
5757
string.pointer ++, \
5858
1) : \
5959
(COPY(emitter->buffer,string), \

0 commit comments

Comments
 (0)