mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
Fixed sign match
This commit is contained in:
parent
d691849594
commit
84cabd9c20
|
@ -196,7 +196,7 @@ static int detect_file_format(const char *file_name) {
|
||||||
|
|
||||||
// Find the last delimiter char ( / or \ ). Hope the other kind is not used in the name.
|
// Find the last delimiter char ( / or \ ). Hope the other kind is not used in the name.
|
||||||
// If delim is not found, set pointer to the beginning.
|
// If delim is not found, set pointer to the beginning.
|
||||||
unsigned char* sub_str = (unsigned char*)strrchr(file_name, '.');
|
char* sub_str = (char*)strrchr(file_name, '.');
|
||||||
if (!sub_str) return 0;
|
if (!sub_str) return 0;
|
||||||
|
|
||||||
// KVZ_FILE_FORMAT
|
// KVZ_FILE_FORMAT
|
||||||
|
|
Loading…
Reference in a new issue