Changeset 1916 for branches/c08_branch/source/parse_table.cpp
- Timestamp:
- 04/04/08 03:02:50 (9 months ago)
- Files:
-
- 1 modified
-
branches/c08_branch/source/parse_table.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/c08_branch/source/parse_table.cpp
r1815 r1916 878 878 879 879 lgLines_Malloc = true; 880 /* this flag says we didnot find a continuum source - nearly all table XXX880 /* this flag says this is not find a continuum source - nearly all table XXX 881 881 * commands deal with continuum sources */ 882 882 ncont = -10; 883 883 884 884 /* actually get the lines, and malloc the space in the arrays */ 885 nLINE_TABLE = cdGetLineList( chLINE_LIST , &chLabel , &wl); 885 if( (nLINE_TABLE = cdGetLineList( chLINE_LIST , &chLabel , &wl) )<0 ) 886 { 887 /* did not find file, abort */ 888 fprintf(ioQQQ,"\n DISASTER PROBLEM ParseTable could not find " 889 "line list file %s\n", chLINE_LIST ); 890 fprintf(ioQQQ," Please check the spelling of the file name and that it " 891 "is in either the local or data directory.\n\n"); 892 cdEXIT(EXIT_FAILURE); 893 } 886 894 } 887 895
