Browse Source

Fix a compiler warning

pull/2274/head
Max Lv 6 years ago
parent
commit
ba930dcca7
1 changed files with 1 additions and 0 deletions
  1. 1
      src/utils.c

1
src/utils.c

@ -250,6 +250,7 @@ ss_align(size_t size)
err = posix_memalign(&tmp, 16, size);
#elif __MINGW32__
tmp = __mingw_aligned_malloc(size, 16);
err = tmp == NULL;
#else
err = -1;
#endif

Loading…
Cancel
Save