diff options
-rw-r--r-- | common.h | 2 | ||||
-rw-r--r-- | sum_fd.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -5,8 +5,8 @@ #include <alloca.h> #include <errno.h> #include <inttypes.h> -#include <stdlib.h> #include <stddef.h> +#include <stdlib.h> #include <string.h> #include <unistd.h> @@ -52,7 +52,7 @@ libsha1_sum_fd(int fd, enum libsha1_algorithm algorithm, void *restrict hashsum) if (errno == EINTR) continue; #if ALLOCA_LIMIT <= 0 - free(chunk); + free(chunk); #endif return -1; } |