diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2010-12-13 15:30:35 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2010-12-13 15:30:35 -0500 |
commit | 095bbf925334a6014dfa89bd6eee6448a836b1ff (patch) | |
tree | 0b90abb0e1b4d9d175c46b2267157540157cf4b7 /src/curses.c | |
parent | 62f9a77e79a3ce4a909ef92a125c4160d9e07cb7 (diff) | |
download | NetNuke2-095bbf925334a6014dfa89bd6eee6448a836b1ff.tar.gz |
Incorrect syntax for COM call fixed
Diffstat (limited to 'src/curses.c')
-rw-r--r-- | src/curses.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |