aboutsummaryrefslogtreecommitdiffhomepage
path: root/screen.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2011-12-28 12:36:47 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2011-12-28 12:36:47 -0800
commit78322a63218e8c66a4788dc79e252db4050bca23 (patch)
tree289c0cb82cc30e0c4f5d86e6be24b4e1990bb572 /screen.h
parent46fa2dd2f0d104471bbb00b8e119decd91cda71d (diff)
Migrate some more away from array_list_t
Diffstat (limited to 'screen.h')
-rw-r--r--screen.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/screen.h b/screen.h
index 291f35c6..4623f64e 100644
--- a/screen.h
+++ b/screen.h
@@ -135,10 +135,10 @@ typedef struct
as possible.
*/
void s_write( screen_t *s,
- wchar_t *prompt,
- wchar_t *commandline,
- int *colors,
- int *indent,
+ const wchar_t *prompt,
+ const wchar_t *commandline,
+ const int *colors,
+ const int *indent,
int cursor_pos );
/**