Changeset 40358d2 for app/src/cor
- 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/cor/common_cor.cc
r25ae32e r40358d2 10 10 { 11 11 expand_path(args->dictionary_arg,dictionary); 12 if(file_accessible(dictionary)!=0) 13 { 14 fprintf(stderr,"Cannot open the dictionary file: %s\nAborting.\n",dictionary); 15 exit(1); 16 } 12 17 } 13 18 else if (args->dictionary_home_given && args->language_given) … … 16 21 expand_path(args->dictionary_home_arg, buf); 17 22 sprintf(dictionary,"%s/%s/cor.bin",buf,args->language_arg); 23 if(file_accessible(dictionary)!=0) 24 { 25 fprintf(stderr,"Cannot open the dictionary file: %s\nAborting.\n",dictionary); 26 exit(1); 27 } 18 28 } 19 29 }
Note: See TracChangeset
for help on using the changeset viewer.