summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2025-02-04 20:29:32 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2025-02-04 20:29:32 +0100
commit2129e874560cd3488e325cf707244c6607d77736 (patch)
tree3ee17a5c873754099c8c3fead650d9292e75dece
parent7f6cc9fe137f3a67bf6cac05d2805bf140b7c1b6 (diff)
downloadblpconvert-2129e874560cd3488e325cf707244c6607d77736.tar.gz
Fixed some padding in comments
-rw-r--r--main.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/main.c b/main.c
index f4a324f..4442f5e 100644
--- a/main.c
+++ b/main.c
@@ -32,15 +32,15 @@ typedef struct {
} path_components;
const char *type_labels[] = {
- "JPG", // Index 0
- "BLP/DXTC/Uncompressed" // Index 1
+ "JPG", // Index 0
+ "BLP/DXTC/Uncompressed" // Index 1
};
const char *compression_labels[] = {
- "Invalid", // Index 0 (Unused)
- "BLP", // Index 1
- "DXTC", // Index 2
- "Uncompressed" // Index 3
+ "Invalid", // Index 0 (Unused)
+ "BLP", // Index 1
+ "DXTC", // Index 2
+ "Uncompressed" // Index 3
};
path_components extract_path_components(const char *filepath) {