diff options
| author | Cody Logan <cody@lokken.dev> | 2023-11-29 11:30:53 -0800 |
|---|---|---|
| committer | Cody Logan <cody@lokken.dev> | 2023-11-29 11:30:53 -0800 |
| commit | 99c124255f17161d285ad6f9ad36917f5cb19bd2 (patch) | |
| tree | 1757a9c315b17522b3b4a2616ce29de60594181c /test-convert-markdown.c | |
| parent | 9e90de0981a9c6c12e81f24b9f4d1428a26a090a (diff) | |
| download | convert-markdown-99c124255f17161d285ad6f9ad36917f5cb19bd2.tar.gz convert-markdown-99c124255f17161d285ad6f9ad36917f5cb19bd2.zip | |
Consistent code style
Diffstat (limited to 'test-convert-markdown.c')
| -rw-r--r-- | test-convert-markdown.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test-convert-markdown.c b/test-convert-markdown.c index d2eb1a7..936b118 100644 --- a/test-convert-markdown.c +++ b/test-convert-markdown.c @@ -16,9 +16,9 @@ #include "parse-file.h" -static int test_parse_file(const char* testname, const char* input, const char* output) { - FILE* instream = tmpfile(); - FILE* outstream = tmpfile(); +static int test_parse_file(const char *testname, const char *input, const char *output) { + FILE *instream = tmpfile(); + FILE *outstream = tmpfile(); if (instream == NULL || outstream == NULL) { printf("Error opening temporary file(s)"); |
