Changeset 242

Show
Ignore:
Timestamp:
Mon Feb 6 07:27:12 2006
Author:
giovannibajo
Message:

Fix indentation

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/source/common/launch.c

    r164 r242  
    863 863                 if (ptoc->typcd == 's') {  
    864 864                         /* Get data out of the archive.  */  
    865                   data = extract(ptoc);  
      865                         data = extract(ptoc);  
    865 865                         /* Run it */  
    866 866                         rc = PyRun_SimpleString(data);  
    867 867                         /* log errors and go on */  
    868 868                         if (rc != 0) {  
    869                   sprintf(msg, " RC: %d from %s\n", rc, ptoc->name);  
    870                   VS(msg);  
      869                                 sprintf(msg, " RC: %d from %s\n", rc, ptoc->name);  
      870                                 VS(msg);  
    871 871                         }  
    872 872                         free(data);