diff options
author | bunnei <bunneidev@gmail.com> | 2019-03-20 04:27:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-20 04:27:17 +0100 |
commit | adf07cbe17c49bc4384926f83f2de9f15e616f1c (patch) | |
tree | e2e44f58a5b9200fadfcdf134ddbff6d66e4e242 | |
parent | Merge pull request #2258 from lioncash/am (diff) | |
parent | Fix getopt on systems where char is unsigned by default (diff) | |
download | yuzu-adf07cbe17c49bc4384926f83f2de9f15e616f1c.tar yuzu-adf07cbe17c49bc4384926f83f2de9f15e616f1c.tar.gz yuzu-adf07cbe17c49bc4384926f83f2de9f15e616f1c.tar.bz2 yuzu-adf07cbe17c49bc4384926f83f2de9f15e616f1c.tar.lz yuzu-adf07cbe17c49bc4384926f83f2de9f15e616f1c.tar.xz yuzu-adf07cbe17c49bc4384926f83f2de9f15e616f1c.tar.zst yuzu-adf07cbe17c49bc4384926f83f2de9f15e616f1c.zip |
-rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index c6c66a787..245f25847 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp @@ -114,9 +114,9 @@ int main(int argc, char** argv) { }; while (optind < argc) { - char arg = getopt_long(argc, argv, "g:fhvp::", long_options, &option_index); + int arg = getopt_long(argc, argv, "g:fhvp::", long_options, &option_index); if (arg != -1) { - switch (arg) { + switch (static_cast<char>(arg)) { case 'g': errno = 0; gdb_port = strtoul(optarg, &endarg, 0); |