Squash even more warnings

This commit is contained in:
cpq 2021-05-28 18:57:47 +01:00
parent 879261981f
commit 7c37d75bf4
3 changed files with 4 additions and 4 deletions

View File

@ -45,8 +45,8 @@ mg_prefix: mongoose.c mongoose.h
$(CLANG) mongoose.c $(CFLAGS) -c -o /tmp/x.o && nm /tmp/x.o | grep ' T' | grep -v 'mg_' ; test $$? = 1
# C++ build
test++: CLANG = g++ -Wno-deprecated
test++: WARN += -Wno-shadow
test++: CLANG = g++
test++: WARN += -Wno-shadow -Wno-missing-field-initializers -Wno-deprecated
test++: unamalgamated
# Make sure we can build from an unamalgamated sources

View File

@ -3846,7 +3846,7 @@ unsigned short mg_url_port(const char *url) {
if (memcmp(url, "wss:", 4) == 0 || memcmp(url, "https:", 6) == 0) port = 443;
if (memcmp(url, "mqtt:", 5) == 0) port = 1883;
if (memcmp(url, "mqtts:", 6) == 0) port = 8883;
if (u.port) port = (uint16_t) atoi(url + u.port);
if (u.port) port = (unsigned short) atoi(url + u.port);
return port;
}

View File

@ -64,7 +64,7 @@ unsigned short mg_url_port(const char *url) {
if (memcmp(url, "wss:", 4) == 0 || memcmp(url, "https:", 6) == 0) port = 443;
if (memcmp(url, "mqtt:", 5) == 0) port = 1883;
if (memcmp(url, "mqtts:", 6) == 0) port = 8883;
if (u.port) port = (uint16_t) atoi(url + u.port);
if (u.port) port = (unsigned short) atoi(url + u.port);
return port;
}