]> Sergey Matveev's repositories - nnn.git/commitdiff
Fix build break
authorArun Prakash Jana <engineerarun@gmail.com>
Sat, 27 Mar 2021 19:46:22 +0000 (01:16 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Sat, 27 Mar 2021 19:46:22 +0000 (01:16 +0530)
src/nnn.c

index 9f1b6ab7a69e18c931657069a4b4e1ac85dbfb88..a320dc0921619c24703aa38d3103bc4d171f5aee 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -5943,9 +5943,9 @@ static bool cdprep(char *lastdir, char *lastname, char *path, char *newpath)
 
 static bool browse(char *ipath, const char *session, int pkey)
 {
-       char newpath[PATH_MAX] __attribute__ ((aligned));
-       char rundir[PATH_MAX] __attribute__ ((aligned));
-       char runfile[NAME_MAX + 1] __attribute__ ((aligned));
+       char newpath[PATH_MAX] __attribute__ ((aligned)),
+            rundir[PATH_MAX] __attribute__ ((aligned)),
+            runfile[NAME_MAX + 1] __attribute__ ((aligned));
        char *path, *lastdir, *lastname, *dir, *tmp;
        pEntry pent;
        enum action sel;