refactor: fix comments

Applying code guidelines. No side effects.
This commit is contained in:
Piotr Gregor 2016-02-05 00:37:33 +00:00
parent 43d89f0258
commit 2e30c94c35
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ extern void init_fast_acosf(void)
if (acos_table == NULL) {
ret = access(ACOS_TABLE_FILENAME, F_OK);
if(ret == 0) compute_table();
if (ret == 0) compute_table();
acos_fd = open(ACOS_TABLE_FILENAME, O_RDONLY);
if (acos_fd == -1) perror("Could not open file " ACOS_TABLE_FILENAME);