aboutsummaryrefslogtreecommitdiffstats
path: root/quantum/painter/qp_stream.h
diff options
context:
space:
mode:
authorQMK Bot2025-11-30 20:25:13 +0100
committerGitHub2025-11-30 20:25:13 +0100
commit6ed61c65dd66cdbb450a4920a69bae193ec73f15 (patch)
tree2d8cf989fba3622bbde9ea1d2da0f9bfe65edd95 /quantum/painter/qp_stream.h
parent330a8597f8fb136374285d2b52a978e311b46ede (diff)
[CI] Format code according to conventions (#25827)
Format code according to conventions
Diffstat (limited to 'quantum/painter/qp_stream.h')
-rw-r--r--quantum/painter/qp_stream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/painter/qp_stream.h b/quantum/painter/qp_stream.h
index 4f2b612e43..510b408d6e 100644
--- a/quantum/painter/qp_stream.h
+++ b/quantum/painter/qp_stream.h
@@ -62,7 +62,7 @@ typedef struct qp_stream_t {
typedef struct qp_memory_stream_t {
qp_stream_t base;
- uint8_t * buffer;
+ uint8_t *buffer;
int32_t length;
int32_t position;
bool is_eof;
@@ -77,7 +77,7 @@ qp_memory_stream_t qp_make_memory_stream(void *buffer, int32_t length);
typedef struct qp_file_stream_t {
qp_stream_t base;
- FILE * file;
+ FILE *file;
} qp_file_stream_t;
qp_file_stream_t qp_make_file_stream(FILE *f);