summaryrefslogtreecommitdiffstats
path: root/client/cmd_line_parser.cpp
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2010-12-06 17:55:16 +0200
committerAlon Levy <alevy@redhat.com>2010-12-08 17:11:45 +0200
commit06749bd66bb3e689bc96be1a3739747912ee0020 (patch)
treedf26e6897c54367f176d3bdeff757896c090a9d5 /client/cmd_line_parser.cpp
parent2cd07dd8f3dd9bf34b1725bb015aecefc93b3454 (diff)
downloadspice-06749bd66bb3e689bc96be1a3739747912ee0020.tar.gz
spice-06749bd66bb3e689bc96be1a3739747912ee0020.tar.xz
spice-06749bd66bb3e689bc96be1a3739747912ee0020.zip
mingw32 build: fix signed/unsigned warnings as errors
Diffstat (limited to 'client/cmd_line_parser.cpp')
-rw-r--r--client/cmd_line_parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/cmd_line_parser.cpp b/client/cmd_line_parser.cpp
index a813629d..963250b1 100644
--- a/client/cmd_line_parser.cpp
+++ b/client/cmd_line_parser.cpp
@@ -436,7 +436,7 @@ char* CmdLineParser::next_argument()
void CmdLineParser::show_help()
{
static const int HELP_START_POS = 30;
- static const int HELP_WIDTH = 80 - HELP_START_POS;
+ static const unsigned HELP_WIDTH = 80 - HELP_START_POS;
std::ostringstream os;
os << _argv[0] << " - " << _description.c_str() << "\n\noptions:\n\n";