commit 89085246e532c95fd59ac886218a5ec2d57b2071
parent 6d7c774ba2fd812c587cf948d8f474b34c7c50af
Author: Joris Vink <joris@coders.se>
Date: Sat, 10 Jul 2021 10:03:01 +0200
style nits
Diffstat:
src/fileref.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/fileref.c b/src/fileref.c
@@ -79,7 +79,7 @@ kore_fileref_create(struct kore_server *srv, const char *path, int fd,
if (srv->tls == 0) {
ref->fd = fd;
} else {
- if ((uintmax_t)size> SIZE_MAX) {
+ if ((uintmax_t)size > SIZE_MAX) {
kore_pool_put(&ref_pool, ref);
return (NULL);
}