diff options
Diffstat (limited to 'protocols/Steam/src/http_request.h')
-rw-r--r-- | protocols/Steam/src/http_request.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Steam/src/http_request.h b/protocols/Steam/src/http_request.h index 43bb68d464..696b04f2a8 100644 --- a/protocols/Steam/src/http_request.h +++ b/protocols/Steam/src/http_request.h @@ -35,7 +35,7 @@ private: void FormatV(const char *urlFormat, va_list args) { - m_uri.AppendFormatV(urlFormat, args); + m_uri.FormatV(urlFormat, args); if (m_request) m_request->szUrl = m_uri.GetBuffer(); } @@ -125,7 +125,7 @@ public: { return m_request ? &m_request->headers[idx] - : NULL; + : nullptr; } size_t GetSize() const |