소스 검색

replaces confusing error message at comparing the file suffix (Debian #499445)

master
Dmitry Smirnov 11 년 전
부모
커밋
26b7d5295f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/lib/cuefile.c

+ 2
- 2
src/lib/cuefile.c 파일 보기

@@ -18,7 +18,7 @@ Cd *cf_parse(char *name, int *format)

if (UNKNOWN == *format) {
if (UNKNOWN == (*format = cf_format_from_suffix(name))) {
fprintf(stderr, "%s: unknown format\n", name);
fprintf(stderr, "%s: unknown file suffix\n", name);
return NULL;
}
}
@@ -52,7 +52,7 @@ int cf_print(char *name, int *format, Cd *cd)

if (UNKNOWN == *format) {
if (UNKNOWN == (*format = cf_format_from_suffix(name))) {
fprintf(stderr, "%s: unknown format\n", name);
fprintf(stderr, "%s: unknown file suffix\n", name);
return -1;
}
}


불러오는 중...
취소
저장