Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
0lvin committed Dec 11, 2022
1 parent def5407 commit 3973879
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/common/header/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include "shared_safe.h"
#include "crc.h"

#define VKVERSION "1.0"
#define VKVERSION "1.0.3"

#ifndef YQ2OSTYPE
#error YQ2OSTYPE should be defined by the build system
Expand Down
4 changes: 2 additions & 2 deletions src/common/shared.c
Original file line number Diff line number Diff line change
Expand Up @@ -1448,7 +1448,7 @@ File_Filtered_Line(const char *name, const char *filter)
const char *name_part;
const char *str_end;

str_end = index(current_filter, '*');
str_end = strchr(current_filter, '*');
if (!str_end)
{
if (!strstr(name, current_filter))
Expand Down Expand Up @@ -1496,7 +1496,7 @@ File_Filtered(const char *name, const char *filter)
char line_filter[MAX_QPATH];
const char *str_end;

str_end = index(current_filter, ' ');
str_end = strchr(current_filter, ' ');
// its end of filter
if (!str_end)
{
Expand Down

0 comments on commit 3973879

Please sign in to comment.