]> git.sur5r.net Git - i3/i3/commitdiff
retab! get_exe_path.c
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 10 Jun 2013 21:08:42 +0000 (23:08 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 10 Jun 2013 21:08:42 +0000 (23:08 +0200)
We seriously need auto-formatting.

libi3/get_exe_path.c

index a308e242c04b7d14ce5acf4447008e5babe26214..32fa544b164b0f93c235ff8f0d418c7acf09a0c5 100644 (file)
@@ -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;
        }