diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-02-03 20:04:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-03 20:04:53 +0100 |
commit | 5bd764a35aeaf50b54957bfa94ba94198514baf0 (patch) | |
tree | 86b727f434302ffb28cb59278243517f9765e170 /source.c | |
parent | 3878da883b8a54fb863fc6dcd9b9b8949caa6300 (diff) | |
parent | 7edad5cefa0f065aa83dffd2d7830aeaf9f38662 (diff) |
Merge pull request #37 from jow-/stdlib-tests
Diffstat (limited to 'source.c')
-rw-r--r-- | source.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -126,7 +126,7 @@ uc_source_put(uc_source_t *source) uc_source_type_t uc_source_type_test(uc_source_t *source) { - union { char s[sizeof(uint32_t)]; uint32_t n; } buf; + union { char s[sizeof(uint32_t)]; uint32_t n; } buf = { 0 }; uc_source_type_t type = UC_SOURCE_TYPE_PLAIN; FILE *fp = source->fp; size_t rlen; |