Skip to content

Commit

Permalink
lib: Fix yet another Windows build break
Browse files Browse the repository at this point in the history
Missing symbol, that's all.
  • Loading branch information
vkoskiv committed Dec 12, 2023
1 parent 2ddf137 commit 9709e16
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/lib/protocol/protocol.c
Original file line number Diff line number Diff line change
Expand Up @@ -900,4 +900,9 @@ struct renderer *deserialize_renderer(const char *data) {
return r;
}

#else
// Empty stub for Windows
void dump_renderer_state(const struct renderer *r) {
(void)r;
}
#endif

0 comments on commit 9709e16

Please sign in to comment.