diff options
author | Timothy Pearson <[email protected]> | 2012-01-25 16:18:06 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-01-25 16:18:06 -0600 |
commit | 51bbe9e5da9c9ebf2109ab59f98d182c3ee23d86 (patch) | |
tree | 074de8e0a1545a6bc4e66eac1ab1e27d3feda223 /src/kvilib/core | |
parent | ec6ef7489fd128f64c8d39d1d6b36b978b669c54 (diff) | |
download | kvirc-51bbe9e5da9c9ebf2109ab59f98d182c3ee23d86.tar.gz kvirc-51bbe9e5da9c9ebf2109ab59f98d182c3ee23d86.zip |
Fix linear alphabet string errors
Diffstat (limited to 'src/kvilib/core')
-rw-r--r-- | src/kvilib/core/kvi_string.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kvilib/core/kvi_string.cpp b/src/kvilib/core/kvi_string.cpp index 54a1c4a6..a02d6c72 100644 --- a/src/kvilib/core/kvi_string.cpp +++ b/src/kvilib/core/kvi_string.cpp @@ -1342,7 +1342,7 @@ int KviStr::hexToBuffer(char ** buffer,bool bNullToNewlines) return len; } -static const char * base64_chars = "ABCDEFGHIJKLMNOPTQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; +static const char * base64_chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; void KviStr::bufferToBase64(const char * buffer,int len) |