Skip to content

Commit 616abfa

Browse files
use i32 insted of u32
1 parent a2a2874 commit 616abfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/logic/app.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ void show_version(void) {
2828
}
2929

3030
bool app_entry(int argc, char** argv) {
31-
for (u32 i = 1; i < argc; ++i) {
31+
for (i32 i = 1; i < argc; ++i) {
3232
if (argv[i] == cnullptr) continue;
3333
if (fossil_io_cstring_compare(argv[i], "--help") == 0) {
3434
show_commands(argv[0]);

0 commit comments

Comments
 (0)