mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-31 20:31:19 -03:00
Drop most 'const's from function prototypes
darcs-hash:20060612214742-ac50b-9b0801e8a7c07d6ab3f0acf569e1d6eb1eeb3f0e.gz
This commit is contained in:
4
input.c
4
input.c
@@ -1,5 +1,5 @@
|
||||
/** \file input.c
|
||||
|
||||
a
|
||||
Functions for reading a character of input from stdin, using the
|
||||
inputrc information for key bindings.
|
||||
|
||||
@@ -1411,7 +1411,7 @@ int input_init()
|
||||
/**
|
||||
Free memory used by the specified mapping
|
||||
*/
|
||||
static void destroy_mapping( const void *key, const void *val )
|
||||
static void destroy_mapping( void *key, void *val )
|
||||
{
|
||||
int i;
|
||||
array_list_t *mappings = (array_list_t *)val;
|
||||
|
||||
Reference in New Issue
Block a user