From 095bbf925334a6014dfa89bd6eee6448a836b1ff Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 13 Dec 2010 15:30:35 -0500 Subject: Incorrect syntax for COM call fixed --- src/curses.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/curses.c') diff --git a/src/curses.c b/src/curses.c index 28175e6..362e57a 100644 --- a/src/curses.c +++ b/src/curses.c @@ -108,7 +108,7 @@ void* main_window_worker(void* args) } last = i - 1; - COM("IGNORING: %s", device[first]->path); + COM(self, "IGNORING: %s", device[first]->path); /* Replace the first device's array entry and then clear the original */ memmove(device[first], device[last], sizeof(nndevice_t)); memset(device[last], 0, sizeof(nndevice_t)); -- cgit