aboutsummaryrefslogtreecommitdiff
path: root/arg.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-05 21:54:47 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-05 21:54:47 +0000
commit741f8967b40121f0364c90635bd609df9cdcd933 (patch)
treef18732e75bf23ce426265251b3e734c2bdd55dd1 /arg.c
parent0b9b873a5505de6fdfb8f02cfbaef5fc82831a5f (diff)
downloadrtmux-741f8967b40121f0364c90635bd609df9cdcd933.tar.gz
rtmux-741f8967b40121f0364c90635bd609df9cdcd933.tar.bz2
rtmux-741f8967b40121f0364c90635bd609df9cdcd933.zip
Final missing print function.
Diffstat (limited to 'arg.c')
-rw-r--r--arg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arg.c b/arg.c
index 9ff276fa..00b314d4 100644
--- a/arg.c
+++ b/arg.c
@@ -1,4 +1,4 @@
-/* $Id: arg.c,v 1.1 2008-06-05 21:25:00 nicm Exp $ */
+/* $Id: arg.c,v 1.2 2008-06-05 21:54:47 nicm Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -79,7 +79,7 @@ arg_parse_client(const char *arg)
if (arg2[n - 1] == ':')
arg2[n - 1] = '\0';
- /* Try and lookup the client name. */
+ /* Try and look up the client name. */
c = arg_lookup_client(arg2);
xfree(arg2);
return (c);
@@ -154,7 +154,7 @@ arg_parse_window(const char *arg, struct session **s, int *idx)
return (0);
}
- /* If missing, try as an index, else lookup immediately. */
+ /* If missing, try as an index, else look up immediately. */
if (ptr == NULL) {
*idx = strtonum(arg2, 0, INT_MAX, &errstr);
if (errstr == NULL) {