aboutsummaryrefslogtreecommitdiff
path: root/extras/ezio/tty.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-02-11 10:59:47 -0800
committerBen Pfaff <blp@nicira.com>2010-02-11 10:59:47 -0800
commit67a4917b07031b387beafaedce413b4207214059 (patch)
tree0b14aebd79b746f7f5d943be9829cd359fcb49c5 /extras/ezio/tty.c
parent193ec5109dedb23058dfa734545313b5b3ba10c8 (diff)
Rename UNUSED macro to OVS_UNUSED to avoid naming conflict.
Requested by Jean Tourrilhes <jt@hpl.hp.com>.
Diffstat (limited to 'extras/ezio/tty.c')
-rw-r--r--extras/ezio/tty.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/extras/ezio/tty.c b/extras/ezio/tty.c
index 709b8028..fefeea15 100644
--- a/extras/ezio/tty.c
+++ b/extras/ezio/tty.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 2008, 2009 Nicira Networks, Inc.
+/* Copyright (c) 2008, 2009, 2010 Nicira Networks, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -374,7 +374,9 @@ tty_fork_child(int master_fd, char *argv[])
}
int
-tty_set_window_size(int fd UNUSED, int rows UNUSED, int columns UNUSED)
+tty_set_window_size(int fd OVS_UNUSED,
+ int rows OVS_UNUSED,
+ int columns OVS_UNUSED)
{
#ifdef TIOCGWINSZ
struct winsize win;