Skip to content

Commit

Permalink
Update compressedlut.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
kiabuzz authored Feb 13, 2024
1 parent d45e90c commit ca9e29a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compressedlut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ int main(int argc, char* argv[])
string line;
while (getline(table_file, line)) {
long int value;
value = stoi(line, 0, 16);
value = stol(line, 0, 16);
table_data.push_back(value);
}
table_file.close();
Expand Down

0 comments on commit ca9e29a

Please sign in to comment.