Skip to content

Commit ca9e29a

Browse files
authored
Update compressedlut.cpp
1 parent d45e90c commit ca9e29a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compressedlut.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ int main(int argc, char* argv[])
7777
string line;
7878
while (getline(table_file, line)) {
7979
long int value;
80-
value = stoi(line, 0, 16);
80+
value = stol(line, 0, 16);
8181
table_data.push_back(value);
8282
}
8383
table_file.close();

0 commit comments

Comments
 (0)