aboutsummaryrefslogtreecommitdiffstats
path: root/guts/execl.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/execl.c')
-rw-r--r--guts/execl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/guts/execl.c b/guts/execl.c
index d7b477c..ca2df70 100644
--- a/guts/execl.c
+++ b/guts/execl.c
@@ -3,7 +3,7 @@
* guts/COPYRIGHT for information.
*
* static int
- * wrap_execl(const char *path, const char *arg, va_list ap) {
+ * wrap_execl(const char *file, const char *arg, va_list ap) {
* int rc = -1;
*/
@@ -33,7 +33,7 @@
}
}
- rc = wrap_execv (path, (char *const *) argv);
+ rc = wrap_execv (file, (char *const *) argv);
free (argv);