gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r3924 - GNUnet/src/applications/dstore


From: grothoff
Subject: [GNUnet-SVN] r3924 - GNUnet/src/applications/dstore
Date: Mon, 11 Dec 2006 19:53:55 -0800 (PST)

Author: grothoff
Date: 2006-12-11 19:53:54 -0800 (Mon, 11 Dec 2006)
New Revision: 3924

Modified:
   GNUnet/src/applications/dstore/dstore.c
Log:
fix

Modified: GNUnet/src/applications/dstore/dstore.c
===================================================================
--- GNUnet/src/applications/dstore/dstore.c     2006-12-12 03:40:12 UTC (rev 
3923)
+++ GNUnet/src/applications/dstore/dstore.c     2006-12-12 03:53:54 UTC (rev 
3924)
@@ -62,11 +62,12 @@
                      const char *zSql,       /* SQL statement, UTF-8 encoded */
                      sqlite3_stmt **ppStmt) {  /* OUT: Statement handle */
   char * dummy;
-  return sqlite3_prepare(dbh,
-                        zSql,
-                        strlen(zSql),
-                        ppStmt,
-                        (const char**) &dummy);
+  sqlite3_prepare(dbh,
+                 zSql,
+                 strlen(zSql),
+                 ppStmt,
+                 (const char**) &dummy);
+  return OK;
 }
 
 static void db_reset() {





reply via email to

[Prev in Thread] Current Thread [Next in Thread]