]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
refactor: fix comments
authorPiotr Gregor <peterg@sytel.com>
Fri, 5 Feb 2016 00:37:33 +0000 (00:37 +0000)
committerPiotr Gregor <peterg@sytel.com>
Fri, 5 Feb 2016 00:37:33 +0000 (00:37 +0000)
Applying code guidelines. No side effects.

src/mod/applications/mod_avmd/fast_acosf.c

index 1fd8b2bab70d131ff2a1f0724f13d0dc69fe8c25..263b488076116f199f3fd38fc236d82fdce50868 100644 (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);