mirror of
https://github.com/cesanta/mongoose.git
synced 2025-07-31 01:46:16 +08:00
Squash even more warnings
This commit is contained in:
parent
879261981f
commit
7c37d75bf4
4
Makefile
4
Makefile
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user