1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: =?utf-8?q?Ferenc_W=C3=A1gner?= <wferi@niif.hu>
Date: Sat, 30 Jan 2016 23:29:18 +0100
Subject: Remove superfluous extern keyword
---
xsec/enc/XSECCryptoException.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/xsec/enc/XSECCryptoException.cpp b/xsec/enc/XSECCryptoException.cpp
index cbe0bf4..1b68d8b 100644
--- a/xsec/enc/XSECCryptoException.cpp
+++ b/xsec/enc/XSECCryptoException.cpp
@@ -33,7 +33,7 @@
#include <stdlib.h>
#include <string.h>
-extern const char * XSECCryptoExceptionStrings[] = {
+const char * XSECCryptoExceptionStrings[] = {
"No Error",
"General error occurred somewhere in cryptographic routines",
|