]> granicus.if.org Git - graphviz/commitdiff
smyrna: fix 'path' compilation error on macOS
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 13 Nov 2022 23:05:49 +0000 (15:05 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 17 Nov 2022 03:06:29 +0000 (19:06 -0800)
24bd92c1e5d49b354141cd06d88ca658991b9825 managed to commit code to Smyrna on
which the macOS branch of the logic does not compile. It seems this went
unnoticed because the macOS CI jobs do not build Smyrna.

cmd/smyrna/main.c

index b89a5ba6a289c533e95cfe4b4f864eff274009bf..61223a93bbe8c7872380657b5e563eed8380573b 100644 (file)
@@ -212,7 +212,7 @@ static char *find_me(void) {
     assert(rc != 0);
     assert(buf_size > 0);
 
-    path = gv_alloc(buf_size);
+    char *path = gv_alloc(buf_size);
 
     // retrieve the actual path
     if (_NSGetExecutablePath(path, &buf_size) < 0) {