Skip to content
Snippets Groups Projects
Commit 1f5ebb91 authored by Guillaume Roguez's avatar Guillaume Roguez
Browse files

sip: remove annoying GCC warnings

Refs #52750

Change-Id: Ie2ad357c668ff80e7c489f54f0c9545efeee3981
parent 59824350
No related branches found
No related tags found
No related merge requests found
......@@ -582,7 +582,7 @@ class SIPAccount : public SIPAccountBase {
/**
* The STUN server name (hostname)
*/
pj_str_t stunServerName_ {};
pj_str_t stunServerName_ {nullptr, 0};
/**
* The STUN server port
......
......@@ -147,7 +147,7 @@ public:
return false;
}
virtual pj_str_t getStunServerName() const { return pj_str_t {}; };
virtual pj_str_t getStunServerName() const { return pj_str_t {nullptr, 0}; };
virtual pj_uint16_t getStunPort() const { return 0; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment