From d0fbcd64baada69840ca1dc67585c51ff2e93c9d Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Thu, 10 Jan 2013 00:33:18 -0800 Subject: [PATCH] Fix typos. --- src/cpp/ripple/DBInit.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cpp/ripple/DBInit.cpp b/src/cpp/ripple/DBInit.cpp index 5d8f973a1..1b9c65c11 100644 --- a/src/cpp/ripple/DBInit.cpp +++ b/src/cpp/ripple/DBInit.cpp @@ -4,8 +4,8 @@ // Transaction database holds transactions and public keys const char *TxnDBInit[] = { - "PRAGMA synchronous=NORMAL", - "PRAGMA journal_mode=WAL", + "PRAGMA synchronous=NORMAL;", + "PRAGMA journal_mode=WAL;", "BEGIN TRANSACTION;", @@ -257,8 +257,8 @@ int WalletDBCount = NUMBER(WalletDBInit); // Hash node database holds nodes indexed by hash const char *HashNodeDBInit[] = { - "PRAGMA synchronous=NORMAL", - "PRAGMA journal_mode=WAL", + "PRAGMA synchronous=NORMAL;", + "PRAGMA journal_mode=WAL;", "BEGIN TRANSACTION;",