← Back to team overview

zeitgeist team mailing list archive

[Branch ~zeitgeist/zeitgeist/bluebird] Rev 449: sql.vala: fix formatting typo

 

------------------------------------------------------------
revno: 449
committer: Siegfried-Angel Gevatter Pujals <siegfried@xxxxxxxxxxxx>
branch nick: bluebird
timestamp: Mon 2012-03-26 16:38:14 +0200
message:
  sql.vala: fix formatting typo
modified:
  src/sql.vala


--
lp:zeitgeist
https://code.launchpad.net/~zeitgeist/zeitgeist/bluebird

Your team Zeitgeist Framework Team is subscribed to branch lp:zeitgeist.
To unsubscribe from this branch go to https://code.launchpad.net/~zeitgeist/zeitgeist/bluebird/+edit-subscription
=== modified file 'src/sql.vala'
--- src/sql.vala	2012-02-21 18:17:16 +0000
+++ src/sql.vala	2012-03-26 14:38:14 +0000
@@ -168,7 +168,7 @@
                 }
                 else
                 {
-                    string message = "Can't open database: %d, %s".printf(rc,
+                    string message = "Can't open database: %d, %s".printf (rc,
                         database.errmsg ());
                     throw new EngineError.DATABASE_ERROR (message);
                 }
@@ -326,7 +326,7 @@
         {
             if (unlikely (rc != success_code))
             {
-                string error_message = "%s: %d, %s".printf(
+                string error_message = "%s: %d, %s".printf (
                     msg, rc, database.errmsg ());
                 warning ("%s\n", error_message);
                 throw new EngineError.DATABASE_ERROR (error_message);