Changeset: 8d2ddefb4310 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=8d2ddefb4310
Modified Files:
        sql/backends/monet5/vaults/mseed.mx
Branch: Apr2011
Log Message:

no need to dereference variable of type str to print it

found thanks to strict format checks
on a system with libmseed available


diffs (12 lines):

diff --git a/sql/backends/monet5/vaults/mseed.mx 
b/sql/backends/monet5/vaults/mseed.mx
--- a/sql/backends/monet5/vaults/mseed.mx
+++ b/sql/backends/monet5/vaults/mseed.mx
@@ -369,7 +369,7 @@
        /* Make sure everything is cleaned up */
        ms_readmsr (&msr, NULL, 0, NULL, NULL, 0, 0, 0);
        if ( retcode != MS_ENDOFFILE )
-               throw(MAL, "mseed.load", "Cannot read %s: %s\n", *targetfile, 
ms_errorstr(retcode));
+               throw(MAL, "mseed.load", "Cannot read %s: %s\n", targetfile, 
ms_errorstr(retcode));
        return msg;
 }  
 
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to