Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/ctl/ctl_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ struct ctl_argument_parser {
};

struct ctl_argument {
size_t dest_size; /* size of the entire argument */
struct ctl_argument_parser parsers[]; /* array of 'fields' in arg */
size_t dest_size; /* size of the entire argument */
struct ctl_argument_parser parsers[8]; /* array of 'fields' in arg */
};

#define sizeof_member(type, member) sizeof(((type *)0)->member)
Expand Down
2 changes: 1 addition & 1 deletion src/pool/pool_disjoint.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "utils_log.h"
#include "utils_math.h"

static char *DEFAULT_NAME = "disjoint";
static const char *DEFAULT_NAME = "disjoint";

/* Disjoint pool CTL implementation */
struct ctl disjoint_ctl_root;
Expand Down