]> git.saurik.com Git - wxWidgets.git/commit
Make variable containing port number an ushort in the sockets sample.
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 16 May 2012 15:10:05 +0000 (15:10 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 16 May 2012 15:10:05 +0000 (15:10 +0000)
commitf919ae347793585715d3008899779855df7fb984
tree45e79a83f5d899fc6d65c96ca023b32b73657015
parentc4239f1920f34dd26e30550bbc7e7d3e6f3f2926
Make variable containing port number an ushort in the sockets sample.

A port number is an unsigned short, not long, so don't make it long just
because wxCmdLineParser doesn't provide a convenient way to get the value of
an unsigned short option (it would be nice if it did...).

This fixes the problem with using "%d" format specifier with a long variable
as this resulted in an assert under LP64 systems.

See #14311.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71443 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
samples/sockets/baseserver.cpp