From 4bc88d46fa9859615521f436511d4f102f20eb67 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 18 Jul 2012 14:11:28 +0000 Subject: databases are still static, but are controlled via classes git-svn-id: http://svn.miranda-ng.org/main/trunk@1014 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Dbx_mmap_SA/encrypt.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/Dbx_mmap_SA/encrypt.cpp') diff --git a/plugins/Dbx_mmap_SA/encrypt.cpp b/plugins/Dbx_mmap_SA/encrypt.cpp index a42d79eae2..0837e5cbd8 100644 --- a/plugins/Dbx_mmap_SA/encrypt.cpp +++ b/plugins/Dbx_mmap_SA/encrypt.cpp @@ -32,16 +32,16 @@ void Encrypt(char*msg,BOOL up) int jump; if (up) { - jump=5; + jump = 5; } else { - jump=-5; + jump = -5; } - for (i=0;msg[i];i++) + for (i = 0;msg[i];i++) { - msg[i]=msg[i]+jump; + msg[i] = msg[i]+jump; } } -- cgit v1.2.3