if (!g_file_get_contents (filename, &contents, &length, error))
goto out;
- /* start time is the 19th token after the '(process name)' entry - since only this
+ /* start time is the token at index 19 after the '(process name)' entry - since only this
* field can contain the ')' character, search backwards for this to avoid malicious
* processes trying to fool us
*/
goto out;
}
- start_time = strtoll (tokens[19], &endp, 10);
+ start_time = strtoull (tokens[19], &endp, 10);
if (endp == tokens[19])
{
g_set_error (error,