diff options
author | Seonah Moon <seonah1.moon@samsung.com> | 2018-11-08 14:02:01 +0900 |
---|---|---|
committer | Seonah Moon <seonah1.moon@samsung.com> | 2018-11-08 14:02:44 +0900 |
commit | bc9ddd35af69662a667d983e2484f557f76cf230 (patch) | |
tree | b5a226a657e9be62973a1e0c6dedb5adadfc15cf /lib/inet_ntop.c | |
parent | cfd75dcdb18d0a4291f48020211c65507a97d9eb (diff) | |
download | curl-bc9ddd35af69662a667d983e2484f557f76cf230.tar.gz curl-bc9ddd35af69662a667d983e2484f557f76cf230.tar.bz2 curl-bc9ddd35af69662a667d983e2484f557f76cf230.zip |
Imported Upstream version 7.62.0upstream/7.62.0
Change-Id: Ie916d8e445e0cc69e112cee470744a96a9c84799
Diffstat (limited to 'lib/inet_ntop.c')
-rw-r--r-- | lib/inet_ntop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inet_ntop.c b/lib/inet_ntop.c index fb91a505d..ac5d2d4d6 100644 --- a/lib/inet_ntop.c +++ b/lib/inet_ntop.c @@ -49,7 +49,7 @@ */ static char *inet_ntop4 (const unsigned char *src, char *dst, size_t size) { - char tmp[sizeof "255.255.255.255"]; + char tmp[sizeof("255.255.255.255")]; size_t len; DEBUGASSERT(size >= 16); |