os: const-qualify string arguments (#111)

Avoids the need to cast away const from string literals.
This commit is contained in:
LC
2021-01-31 22:25:03 -05:00
committed by GitHub
parent b595f0d0bf
commit f15faab756
4 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ void version_check(void) {
return;
}
OSReport_Error((char*)"SDKのバージョンが一致しません。停止します\n");
OSReport_Error("SDKのバージョンが一致しません。停止します\n");
do {
} while (true);
}