From: Michael Stapelberg Date: Mon, 10 Jun 2013 21:08:42 +0000 (+0200) Subject: retab! get_exe_path.c X-Git-Tag: 4.6~26 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=57b43d84f95880f0e393ff9ef9e2c351517d1628;p=i3%2Fi3 retab! get_exe_path.c We seriously need auto-formatting. --- diff --git a/libi3/get_exe_path.c b/libi3/get_exe_path.c index a308e242..32fa544b 100644 --- a/libi3/get_exe_path.c +++ b/libi3/get_exe_path.c @@ -13,8 +13,8 @@ * */ const char *get_exe_path(const char *argv0) { - static char destpath[PATH_MAX]; - char tmp[PATH_MAX]; + static char destpath[PATH_MAX]; + char tmp[PATH_MAX]; #if defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) /* Linux and Debian/kFreeBSD provide /proc/self/exe */ @@ -23,9 +23,9 @@ const char *get_exe_path(const char *argv0) { #elif defined(__FreeBSD__) const char *exepath = "/proc/curproc/file"; #endif - ssize_t linksize; + ssize_t linksize; - if ((linksize = readlink(exepath, destpath, sizeof(destpath) - 1)) != -1) { + if ((linksize = readlink(exepath, destpath, sizeof(destpath) - 1)) != -1) { /* readlink() does not NULL-terminate strings, so we have to. */ destpath[linksize] = '\0'; @@ -39,7 +39,7 @@ const char *get_exe_path(const char *argv0) { /* if argv[0] contains a /, prepend the working directory */ if (strchr(argv0, '/') != NULL && - getcwd(tmp, sizeof(tmp)) != NULL) { + getcwd(tmp, sizeof(tmp)) != NULL) { snprintf(destpath, sizeof(destpath), "%s/%s", tmp, argv0); return destpath; }