ソースを参照

* mygetopt.c: fix a parsing issue with short options.

tags/v0.99.beta14
Sam Hocevar sam 16年前
コミット
6a61202a28
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/mygetopt.c

+ 1
- 1
src/mygetopt.c ファイルの表示

@@ -59,7 +59,7 @@ int mygetopt(int argc, char * const _argv[], const char *optstring,
if(tmp[1] == ':')
{
if(flag[2] != '\0')
myoptarg = tmp + 2;
myoptarg = flag + 2;
else
myoptarg = argv[myoptind++];
return ret;


読み込み中…
キャンセル
保存