inc: winfsp_fuse.h: fix memset comment

This commit is contained in:
Bill Zissimopoulos 2020-03-21 15:44:02 -07:00
parent ad68b36de7
commit 4b5b562307
No known key found for this signature in database
GPG Key ID: 3D4F95D52C7B3EA3

View File

@ -362,7 +362,7 @@ static inline int fsp_fuse_set_signal_handlers(void *se)
static pthread_t sigthr;
struct sigaction oldsa, newsa;
# memset instead of ={0} to avoid a GCC -Wmissing-field-initializers warning
// memset instead of initializer to avoid GCC -Wmissing-field-initializers warning
memset(&newsa, 0, sizeof newsa);
if (0 != se)