diff options
Diffstat (limited to 'runtime/klee-libc/htonl.c')
-rw-r--r-- | runtime/klee-libc/htonl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/klee-libc/htonl.c b/runtime/klee-libc/htonl.c index cec2d0f5..521ef5d6 100644 --- a/runtime/klee-libc/htonl.c +++ b/runtime/klee-libc/htonl.c @@ -41,7 +41,7 @@ uint32_t htonl(uint32_t v) { #endif -uint16_t ntohs(uint32_t v) { +uint16_t ntohs(uint16_t v) { return htons(v); } uint32_t ntohl(uint32_t v) { |