X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fascent.c;h=74f714a83515c967cc12f3435b9aab969a8fd7c5;hb=c8d167c5af263b6f56b39275fd5b281bdaf48b02;hp=2ba3c772d5f9f8116f4100b6f3484756cfbb8ef7;hpb=d6f0273b2ebae6995d69c7701838825b96e4f424;p=collectd.git diff --git a/src/ascent.c b/src/ascent.c index 2ba3c772..74f714a8 100644 --- a/src/ascent.c +++ b/src/ascent.c @@ -32,7 +32,7 @@ #include #include -static char *races_list[] = /* {{{ */ +static const char *races_list[] = /* {{{ */ { NULL, "Human", /* 1 */ @@ -49,7 +49,7 @@ static char *races_list[] = /* {{{ */ }; /* }}} */ #define RACES_LIST_LENGTH STATIC_ARRAY_SIZE (races_list) -static char *classes_list[] = /* {{{ */ +static const char *classes_list[] = /* {{{ */ { NULL, "Warrior", /* 1 */ @@ -66,7 +66,7 @@ static char *classes_list[] = /* {{{ */ }; /* }}} */ #define CLASSES_LIST_LENGTH STATIC_ARRAY_SIZE (classes_list) -static char *genders_list[] = /* {{{ */ +static const char *genders_list[] = /* {{{ */ { "Male", "Female" @@ -161,7 +161,7 @@ static size_t ascent_curl_callback (void *buf, size_t size, size_t nmemb, /* {{{ { char *temp; - temp = (char *) realloc (ascent_buffer, + temp = realloc (ascent_buffer, ascent_buffer_fill + len + 1); if (temp == NULL) {