Changeset 40358d2 for app/src/kor/common_cor.cc
- Timestamp:
- 05/08/08 16:38:00 (17 years ago)
- Branches:
- master, help
- Children:
- 9b57c4d
- Parents:
- 0e3df7e
- git-author:
- obrebski <obrebski@…> (05/08/08 16:38:00)
- git-committer:
- obrebski <obrebski@…> (05/08/08 16:38:00)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
app/src/kor/common_cor.cc
rb3179eb r40358d2 16 16 { 17 17 expand_path(args->dictionary_arg,dictionary); 18 if(file_accessible(dictionary)!=0) 19 { 20 fprintf(stderr,"Cannot open the dictionary file: %s\nAborting.\n",dictionary); 21 exit(1); 22 } 18 23 } 19 24 else if (args->dictionary_home_given && args->language_given) … … 22 27 expand_path(args->dictionary_home_arg, buf); 23 28 sprintf(dictionary,"%s/%s/cor.bin",buf,args->language_arg); 29 if(file_accessible(dictionary)!=0) 30 { 31 fprintf(stderr,"Cannot open the dictionary file: %s\nAborting.\n",dictionary); 32 exit(1); 33 } 24 34 } 25 35
Note: See TracChangeset
for help on using the changeset viewer.