Skip to content

Commit 432342b

Browse files
committed
Fixed typo
1 parent ceb0444 commit 432342b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,13 +152,13 @@ int main(int argc, char *argv[])
152152
std::string("./bitrates/" + bitrate + ".json"),
153153
networkType);
154154

155-
std::string algoritmo = argv[1];
155+
std::string algorithm = argv[1];
156156

157-
if (algoritmo == "FirstFit")
157+
if (algorithm == "FirstFit")
158158
{
159159
USE_ALLOC_FUNCTION(FirstFit, sim);
160160
}
161-
else if (algoritmo == "BestFit")
161+
else if (algorithm == "BestFit")
162162
{
163163
USE_ALLOC_FUNCTION(BestFit, sim);
164164
}

0 commit comments

Comments
 (0)