raspberrypi / utils

A collection of scripts and simple applications
BSD 3-Clause "New" or "Revised" License
156 stars 49 forks source link

vclog: fix compiler error with gcc-14.1 #86

Closed heitbaum closed 4 months ago

heitbaum commented 4 months ago

Fixes:

./vclog/vclog.c:199:30: error: 'msg.size' may be used uninitialized [-Werror=maybe-uninitialized] 199 | payload_len = msg.size - sizeof(msg_hdr_t); | ~^~~ ./vclog/vclog.c:193:23: note: 'msg' declared here 193 | msg_hdr_t msg; | ^~~

pelwell commented 4 months ago

Thanks!