Skip to content

Commit 948a0cc

Browse files
author
Dale Alleshouse
committed
a few lint fixes
1 parent 5e29e01 commit 948a0cc

19 files changed

+87
-101
lines changed

src/hashing/farmhash.c

100644100755
File mode changed.

src/list_data_structures/algo_timer.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Copyright 2020 Dale Alleshouse
12
#include "./algo_timer.h"
23

34
#include <stdint.h>

src/list_data_structures/algo_timer.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Copyright 2020 Dale Alleshouse
12
#pragma once
23

34
#include <inttypes.h>

src/list_data_structures/algo_timer_tests.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Copyright 2020 Dale Alleshouse
12
#include <stdbool.h>
23
#include <stdlib.h>
34

src/list_data_structures/array.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Copyright 2020 Dale Alleshouse
12
#include "./array.h"
23

34
#include <stdlib.h>

src/list_data_structures/array.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Copyright 2020 Dale Alleshouse
12
#pragma once
23

34
#include <stddef.h>

src/list_data_structures/binary_tree.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Copyright 2020 Dale Alleshouse
12
#include "./binary_tree.h"
23

34
#include <stdint.h>

src/list_data_structures/binary_tree.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Copyright 2020 Dale Alleshouse
12
#pragma once
23

34
#include <stddef.h>

src/list_data_structures/binary_tree_test.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Copyright 2020 Dale Alleshouse
12
#include "./binary_tree.h"
23

34
#include <limits.h>

src/list_data_structures/linked_list.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Copyright 2020 Dale Alleshouse
12
#include "./linked_list.h"
23

34
#include <stdlib.h>
@@ -231,7 +232,7 @@ void LinkedList_Destroy(LinkedList* list) {
231232
curr = curr->next;
232233

233234
LinkedList_ItemDestroy(list, doomed);
234-
};
235+
}
235236

236237
free(list);
237238
}

0 commit comments

Comments
 (0)