mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-12 10:02:30 +00:00
fix(bc): OsSetCommandLine initialize counter i to 0
This commit is contained in:
parent
9c714d93df
commit
58c8a50e8f
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ std::string CheckArgument(std::string argument) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void OsSetCommandLine(int32_t argc, char** argv) {
|
void OsSetCommandLine(int32_t argc, char** argv) {
|
||||||
int32_t i;
|
int32_t i = 0;
|
||||||
std::string result = "";
|
std::string result = "";
|
||||||
|
|
||||||
while (i < argc) {
|
while (i < argc) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue