aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2022-05-14 14:26:50 +0100
committergingerBill <bill@gingerbill.org>2022-05-14 14:26:50 +0100
commit2ef6544ca276d2456ea2ac858ee49b8b36e2e4f5 (patch)
treeb4abea4fa11bc36ab7863db68c1a728f3f810cb5
parent9921ac01cca70d30bbb551070d72bc8e7f651def (diff)
parent7057f5fc115db9413b33a60833e9b02fb4234842 (diff)
Merge branch 'master' of https://github.com/odin-lang/Odin
-rw-r--r--core/image/which.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/image/which.odin b/core/image/which.odin
index c3caef621..30cb78405 100644
--- a/core/image/which.odin
+++ b/core/image/which.odin
@@ -119,7 +119,7 @@ which_bytes :: proc(data: []byte) -> Which_File_Type {
return .PPM
case '7':
return .PAM
- case 'f', 'F':
+ case 'F', 'f':
return .PFM
}
}