diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2024-02-19 12:54:06 +0100 |
---|---|---|
committer | Sander Vrijders <sander@ouroboros.rocks> | 2024-02-19 14:09:38 +0100 |
commit | a23b29ea4c1bd9d0407b2b070eb2dc9ad15e71cc (patch) | |
tree | c5b2771865e662599a647a2f899a0aec72defbe8 /src/lib | |
parent | 06ee3370998f965b469d1c2859e3e34159c71e20 (diff) | |
download | ouroboros-a23b29ea4c1bd9d0407b2b070eb2dc9ad15e71cc.tar.gz ouroboros-a23b29ea4c1bd9d0407b2b070eb2dc9ad15e71cc.zip |
build: Fix missing newlines at end of file
Some files had a newline at the end, others didn't. Now they all do.
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/.gitignore | 2 | ||||
-rw-r--r-- | src/lib/pb/cacep.proto | 2 | ||||
-rw-r--r-- | src/lib/serdes-oep.c | 2 | ||||
-rw-r--r-- | src/lib/tests/hash_test.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/.gitignore b/src/lib/.gitignore index 8704469b..3ecaf66d 100644 --- a/src/lib/.gitignore +++ b/src/lib/.gitignore @@ -1 +1 @@ -*.pb-c.[ch]
\ No newline at end of file +*.pb-c.[ch] diff --git a/src/lib/pb/cacep.proto b/src/lib/pb/cacep.proto index fbec5bfc..166e261d 100644 --- a/src/lib/pb/cacep.proto +++ b/src/lib/pb/cacep.proto @@ -36,4 +36,4 @@ message cacep_msg { repeated int32 supp_syntax = 6; optional fixed_conc_syntax_msg syntax_spec = 7; required uint64 address = 8; -}
\ No newline at end of file +} diff --git a/src/lib/serdes-oep.c b/src/lib/serdes-oep.c index 5c1b4afc..f92011c5 100644 --- a/src/lib/serdes-oep.c +++ b/src/lib/serdes-oep.c @@ -159,4 +159,4 @@ int enroll_ack_des(struct enroll_ack * ack, enroll_ack_msg__free_unpacked(msg, NULL); return 0; -}
\ No newline at end of file +} diff --git a/src/lib/tests/hash_test.c b/src/lib/tests/hash_test.c index b1605444..1e618e48 100644 --- a/src/lib/tests/hash_test.c +++ b/src/lib/tests/hash_test.c @@ -179,4 +179,4 @@ int hash_test(int argc, ret |= test_sha3(); return ret; -}
\ No newline at end of file +} |