From 3aab1400bc11c15975b3094ac44e02c73a8c3d04 Mon Sep 17 00:00:00 2001 From: j8takagi Date: Thu, 25 Mar 2010 00:08:24 +0900 Subject: [PATCH] =?utf8?q?=E3=82=BD=E3=83=BC=E3=82=B9=E3=83=95=E3=82=A1?= =?utf8?q?=E3=82=A4=E3=83=AB=E3=81=8C=E6=8C=87=E5=AE=9A=E3=81=95=E3=82=8C?= =?utf8?q?=E3=81=AA=E3=81=84=E5=A0=B4=E5=90=88=E3=81=AE=E3=82=A8=E3=83=A9?= =?utf8?q?=E3=83=BC=E3=83=A1=E3=83=83=E3=82=BB=E3=83=BC=E3=82=B8=E3=82=92?= =?utf8?q?=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/casl2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/casl2.c b/src/casl2.c index 139e6b9..7ec14fa 100644 --- a/src/casl2.c +++ b/src/casl2.c @@ -25,7 +25,7 @@ static struct option longopts[] = { /* casl2のエラー定義 */ CERR cerr_casl2[] = { - { 126, "source file is not specified" }, + { 126, "no source file" }, }; bool addcerrlist_casl2() { @@ -118,7 +118,7 @@ int main(int argc, char *argv[]) } /* ソースファイルが指定されていない場合は終了 */ if(argv[optind] == NULL) { - setcerr(126, NULL); /* source file is not specified */ + setcerr(126, NULL); /* no source file */ fprintf(stderr, "CASL2 error - %d: %s\n", cerr->num, cerr->msg); exit(-1); } -- 2.18.0