Changeset f19fef4


Ignore:
Timestamp:
Mar 29, 2009, 9:41:11 PM (15 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
owl
Children:
c2bcd54
Parents:
db654df
Message:
missed semicolons
File:
1 edited

Legend:

Unmodified
Added
Removed
  • zephyr.c

    rdb654df rf19fef4  
    113113  ret=stat(subsfile, &statbuff);
    114114  if (ret) {
    115     owl_function_debugmsg("loadsubs: could not stat file %s", subsfile)
     115    owl_function_debugmsg("loadsubs: could not stat file %s", subsfile);
    116116    if (error_on_nofile==1) return(-1);
    117117    return(0);
     
    122122  file=fopen(subsfile, "r");
    123123  if (!file) {
    124     owl_function_debugmsg("loadsubs: could not open file %s", subsfile)
     124    owl_function_debugmsg("loadsubs: could not open file %s", subsfile);
    125125    return(-1);
    126126  }
Note: See TracChangeset for help on using the changeset viewer.