Browse Source

MAKE_MEM_UNDEFINED: Fix warning

master
Samuel Thibault 3 years ago
parent
commit
dfc322743d
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/libespeak-ng/speech.h

+ 1
- 1
src/libespeak-ng/speech.h View File

# include <valgrind/memcheck.h> # include <valgrind/memcheck.h>
# define MAKE_MEM_UNDEFINED(addr, len) VALGRIND_MAKE_MEM_UNDEFINED(addr, len) # define MAKE_MEM_UNDEFINED(addr, len) VALGRIND_MAKE_MEM_UNDEFINED(addr, len)
# else # else
# define MAKE_MEM_UNDEFINED(addr, len) ((void) (addr, len))
# define MAKE_MEM_UNDEFINED(addr, len) ((void) ((void) addr, len))
# endif # endif
#endif #endif



Loading…
Cancel
Save