Skip to content
This repository was archived by the owner on Dec 6, 2024. It is now read-only.
Open
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
2 changes: 1 addition & 1 deletion c-sdk-common/src/ldvalue.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ unsigned int LDValue_Count(struct LDValue *value) {
return cJSON_GetArraySize(AS_CJSON(value));
}

struct LDObject *LDObject_New() {
struct LDObject *LDObject_New(void) {
return AS_LDOBJECT(cJSON_CreateObject());
}

Expand Down
2 changes: 1 addition & 1 deletion src/integrations/test_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ LDBoolean LDi_isBooleanFlag(struct LDFlagBuilder *flagBuilder) {
}

struct LDTestData *
LDTestDataInit() {
LDTestDataInit(void) {
struct LDTestData *res;
struct LDJSON *currentFlags;
if(!ALLOCATE(struct LDTestData, res)) {
Expand Down