mirror of
https://github.com/fergalmoran/flameshot.git
synced 2026-01-24 04:07:09 +00:00
fixing windows build issues
This commit is contained in:
committed by
borgmanJeremy
parent
f7e8d34c82
commit
0f69244c0f
@@ -42,7 +42,7 @@ std::vector<char> match_specifiers(std::string const& specifier,
|
||||
|
||||
std::vector<char> spec_list;
|
||||
|
||||
for (uint i = 0; i < specifier.size() - 1; i++) {
|
||||
for (size_t i = 0; i < specifier.size() - 1; i++) {
|
||||
if (specifier[i] == '%') {
|
||||
spec_list.push_back(specifier[i + 1]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user