diff options
Diffstat (limited to '')
-rw-r--r-- | memelem.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -6,10 +6,9 @@ void * libsimple_memelem(const void *hay_, size_t hayn, const void *sub_, size_t subn) { - if (!subn) - return (void *)hay_; - switch (subn) { + case 0: + return (void *)hay_; case 1: return memchr(hay_, *(char *)sub_, hayn); case 2: |