diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2008-02-13 10:20:37 -0800 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2008-02-13 10:20:37 -0800 |
commit | a99e5e558fc9e279eeee2b76187766ac1dde19cf (patch) | |
tree | 2b51e4e723ea77efb29c50a65af708c64fe77381 /user-interface.c | |
parent | 919fc87075a0b604d316b7d91fca592eba64829e (diff) |
1.0-81741.0-8174
Diffstat (limited to 'user-interface.c')
-rw-r--r-- | user-interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user-interface.c b/user-interface.c index 1ec24ea..55b7b2c 100644 --- a/user-interface.c +++ b/user-interface.c @@ -62,7 +62,7 @@ extern InstallerUI stream_ui_dispatch_table; /* pull in the user interface data arrays and sizes */ -extern const unsigned char ncurses_ui_array[]; +extern const char ncurses_ui_array[]; extern const int ncurses_ui_array_size; /* struct describing the ui data */ @@ -324,7 +324,7 @@ void ui_command_output(Options *op, const char *fmt, ...) if (!op->silent) __ui->command_output(op, msg); - log_printf(op, FALSE, NV_CMD_OUT_PREFIX, msg); + log_printf(op, FALSE, NV_CMD_OUT_PREFIX, "%s", msg); free(msg); |