Skip to content

Commit

Permalink
fix return type
Browse files Browse the repository at this point in the history
  • Loading branch information
qbnu committed Jun 13, 2024
1 parent 8392332 commit 662ac15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JPEGView/PSDWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static inline unsigned short ReadUShortFromFile(HANDLE file) {
}

// Read and return an unsigned char from file
static inline unsigned short ReadUCharFromFile(HANDLE file) {
static inline unsigned char ReadUCharFromFile(HANDLE file) {
unsigned char val;
ReadFromFile(&val, file, 1);
return val;
Expand Down

0 comments on commit 662ac15

Please sign in to comment.