summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-09-26 18:14:48 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-09-26 18:14:48 +0000
commit0683ae4e4796968fd85df1298c360084add99c9d (patch)
treeb0337bd49a90ddeb78bc8bde1a86bc4d118e21dc
parentb1822f6a72841cf547d749cf6dbf811c983a7528 (diff)
These are no longer unused.
-rw-r--r--op.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/op.c b/op.c
index f5fa1485..a1e1365e 100644
--- a/op.c
+++ b/op.c
@@ -1,4 +1,4 @@
-/* $Id: op.c,v 1.2 2007-09-26 14:08:16 nicm Exp $ */
+/* $Id: op.c,v 1.3 2007-09-26 18:14:48 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -24,7 +24,7 @@
#include "tmux.h"
int
-op_new(char *path, int argc, unused char **argv)
+op_new(char *path, int argc, char **argv)
{
struct new_data data;
struct client_ctx cctx;
@@ -62,7 +62,7 @@ op_new(char *path, int argc, unused char **argv)
}
int
-op_attach(char *path, int argc, unused char **argv)
+op_attach(char *path, int argc, char **argv)
{
struct attach_data data;
struct client_ctx cctx;