diff options
author | Stephen Hurd <shurd@FreeBSD.org> | 2015-12-06 11:14:46 +0000 |
---|---|---|
committer | Stephen Hurd <shurd@FreeBSD.org> | 2015-12-06 11:14:46 +0000 |
commit | 0ed0fe8a98ba404ef2b3bedecd3d1000498c3af1 (patch) | |
tree | 92c6f2bdb763e2057ca2c8de651393369699cc5b /comms | |
parent | 2d9bf48fc398c29603e1ddd7ea9ad720721c8f71 (diff) |
Notes
Diffstat (limited to 'comms')
-rw-r--r-- | comms/trustedqsl/files/patch-apps_tqsl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comms/trustedqsl/files/patch-apps_tqsl.cpp b/comms/trustedqsl/files/patch-apps_tqsl.cpp index 483344f94d51..1e986b65b771 100644 --- a/comms/trustedqsl/files/patch-apps_tqsl.cpp +++ b/comms/trustedqsl/files/patch-apps_tqsl.cpp @@ -5,7 +5,7 @@ origCommandLine += wxT(" "); origCommandLine += argv[i]; - if (argv[i] && (argv[i][0] == wxT('-') || argv[i][0] == wxT('/'))) -+ if (argv[i] != NULL && (argv[i][0] == wxT('-') || argv[i][0] == wxT('/'))) ++ if ((argv[i][0] == wxT('-') || argv[i][0] == wxT('/'))) if (wxIsalpha(argv[i][1]) && wxIsupper(argv[i][1])) argv[i][1] = wxTolower(argv[i][1]); } |