diff options
author | George Hazan <george.hazan@gmail.com> | 2012-10-13 21:55:08 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-10-13 21:55:08 +0000 |
commit | 27290a93d4a46e8b7ecdd1b12114067630390cba (patch) | |
tree | 4b0ad50798f6435ed2b07848195d37425782b5a1 /plugins/SeenPlugin | |
parent | 6034cc2b066736fc0e813dca06972cfb8ede28db (diff) |
minor fix for formatting
git-svn-id: http://svn.miranda-ng.org/main/trunk@1913 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SeenPlugin')
-rw-r--r-- | plugins/SeenPlugin/src/utils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SeenPlugin/src/utils.cpp b/plugins/SeenPlugin/src/utils.cpp index a74fa1652a..5d90145f92 100644 --- a/plugins/SeenPlugin/src/utils.cpp +++ b/plugins/SeenPlugin/src/utils.cpp @@ -413,8 +413,8 @@ LBL_charPtr: goto LBL_charPtr;
default:
- _tcsncpy(szdbsetting, p-1, 2);
- goto LBL_charPtr;
+ *d++ = p[-1];
+ *d++ = *p;
}
}
|