aboutsummaryrefslogtreecommitdiffhomepage
path: root/fish_pager.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-06-02 05:42:31 +1000
committerGravatar axel <axel@liljencrantz.se>2006-06-02 05:42:31 +1000
commit4ffd2afccdb49b333ae8ab574884737f3984c676 (patch)
tree094f3aeca0afe9297137af51aa1bf513cc134e2b /fish_pager.c
parentec58ffa641b8c68a6bd8cdecfcdda107234b0674 (diff)
Fix some minor 64-bit uncleanlieness - thanks to James Anthill
darcs-hash:20060601194231-ac50b-a6b9b94379ba1d5bb6c61f7fad4652c8f748b25f.gz
Diffstat (limited to 'fish_pager.c')
-rw-r--r--fish_pager.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fish_pager.c b/fish_pager.c
index 2686e608..285d0760 100644
--- a/fish_pager.c
+++ b/fish_pager.c
@@ -719,7 +719,8 @@ static void mangle_descriptions( array_list_t *l )
*/
static void join_completions( array_list_t *l )
{
- int i, in, out;
+ long i;
+ int in, out;
hash_table_t desc_table;
hash_init( &desc_table, &hash_wcs_func, &hash_wcs_cmp );