summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/handshake.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/handshake.c b/src/handshake.c
index 28a8ec1..15d171f 100644
--- a/src/handshake.c
+++ b/src/handshake.c
@@ -32,7 +32,7 @@
#include "task.h"
-static const char const *RECORD_TYPES[RECORD_MAX] = {
+static const char *const RECORD_TYPES[RECORD_MAX] = {
"handshake type",
"reply code",
"error detail",
@@ -50,7 +50,7 @@ static const char const *RECORD_TYPES[RECORD_MAX] = {
"method list",
};
-static const char const *REPLY_TYPES[REPLY_MAX] = {
+static const char *const REPLY_TYPES[REPLY_MAX] = {
"success",
"mandatory field missing",
"unacceptable value",