瀏覽代碼

Fixed type for getopt_long return value.

master
Svend Sorensen 18 年之前
父節點
當前提交
156b19d0a9
共有 3 個檔案被更改,包括 4 行新增3 行删除
  1. +1
    -1
      src/tools/cuebreakpoints.c
  2. +1
    -1
      src/tools/cueconvert.c
  3. +2
    -1
      src/tools/cueprint.c

+ 1
- 1
src/tools/cuebreakpoints.c 查看文件

@@ -121,7 +121,7 @@ int main (int argc, char **argv)
int gaps = APPEND;

/* option variables */
char c;
int c;
/* getopt_long() variables */
extern char *optarg;
extern int optind;


+ 1
- 1
src/tools/cueconvert.c 查看文件

@@ -77,7 +77,7 @@ int main (int argc, char **argv)
int iformat = UNKNOWN;
int oformat = UNKNOWN;
/* option variables */
char c;
int c;
/* getopt_long() variables */
extern char *optarg;
extern int optind;


+ 2
- 1
src/tools/cueprint.c 查看文件

@@ -438,8 +438,9 @@ int main (int argc, char **argv)
int trackno = -1; /* track number (-1 = unspecified, 0 = disc info) */
char *d_template = NULL; /* disc template */
char *t_template = NULL; /* track template */
/* option variables */
int c;
/* getopt_long() variables */
char c;
extern char *optarg;
extern int optind;



Loading…
取消
儲存