summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2010-02-24 19:13:39 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2010-02-24 19:13:39 +0000
commitb2a94d6962fe0fa45380c7075fec19f244af6cfc (patch)
tree835ec2e973f85facaa97a200c5b31b58c8206a3d /usr.bin
parent4a8f04edaf7f4cc40e0101e2a5f41c5f463b55db (diff)
Typo fix from Tim van der Molen.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/tmux/job.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/job.c b/usr.bin/tmux/job.c
index 0c6f4433c4a..11bd831b37a 100644
--- a/usr.bin/tmux/job.c
+++ b/usr.bin/tmux/job.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: job.c,v 1.14 2009/12/03 22:50:10 nicm Exp $ */
+/* $OpenBSD: job.c,v 1.15 2010/02/24 19:13:38 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -32,7 +32,7 @@
*/
/* All jobs list. */
-struct joblist all_jobs = SLIST_HEAD_INITIALIZER(&all_jobs);
+struct joblist all_jobs = SLIST_HEAD_INITIALIZER(all_jobs);
RB_GENERATE(jobs, job, entry, job_cmp);