diff options
author | Omar Polo <op@omarpolo.com> | 2023-06-08 13:56:09 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2023-06-08 13:56:09 +0000 |
commit | f1f13cb7dc588c90f14efcb513ff177d2798194b (patch) | |
tree | db8327287f45918fd390403cf18c507e766578e1 /gmid.c | |
parent | 9b1750057ca036835caaaad26332b7fc88ed196f (diff) |
absolutify the path to the pid file
Diffstat (limited to 'gmid.c')
-rw-r--r-- | gmid.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -279,7 +279,7 @@ main(int argc, char **argv) conftest++; break; case 'P': - pidfile = optarg; + pidfile = absolutify_path(optarg); break; case 'V': puts("Version: " GMID_STRING); |