Changeset: 14583962599c for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=14583962599c
Modified Files:
        clients/mapiclient/tomograph.c
Branch: default
Log Message:

Added missing '{' and '}', which otherwise causes tomograph to always 
immediately exit with -1


diffs (15 lines):

diff --git a/clients/mapiclient/tomograph.c b/clients/mapiclient/tomograph.c
--- a/clients/mapiclient/tomograph.c
+++ b/clients/mapiclient/tomograph.c
@@ -563,9 +563,10 @@ static void resetTomograph(void){
        }
        if( inputfile == 0 ){
                tracefd = fopen(buf,"w");
-               if( tracefd == NULL)
+               if( tracefd == NULL){
                        fprintf(stderr,"Could not create trace file 
'%s'\n",buf);
                        exit(-1);
+               }
        }
        if (debug)
                fprintf(stderr, "RESET tomograph %d\n", atlaspage);
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to