]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - audioc.c
cosmetics
[paraslash.git] / audioc.c
index 1fa9880210e96d8ca2509df78980453374a4e469..b9e7853fcee803f6dee6b92cf8691aa06e8843ed 100644 (file)
--- a/audioc.c
+++ b/audioc.c
@@ -51,7 +51,7 @@ static char *concat_args(const int argc, char * const *argv)
 static char *configfile_exists(void)
 {
        static char *config_file;
-        struct stat statbuf;
+       struct stat statbuf;
 
 
        if (!config_file) {
@@ -59,7 +59,7 @@ static char *configfile_exists(void)
                config_file = make_message("%s/.paraslash/audioc.conf", home);
                free(home);
        }
-        if (!stat(config_file, &statbuf))
+       if (!stat(config_file, &statbuf))
                return config_file;
        return NULL;
 }
@@ -137,7 +137,7 @@ int main(int argc, char *argv[])
                        goto out;
                }
                if (loaded < conf.bufsize_arg && FD_ISSET(fd, &rfd)) {
-                       len = recv_bin_buffer(fd, buf + loaded, 
+                       len = recv_bin_buffer(fd, buf + loaded,
                                conf.bufsize_arg - loaded);
                        if (len <= 0) {
                                ret = len < 0? -E_READ : 0;