mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
Fix warning caused by bad casting
darcs-hash:20070416201034-ac50b-89a7257eadbf9098222cfb5ddc4bcf4bb88a8681.gz
This commit is contained in:
parent
4d6751c274
commit
778b6a31ad
1 changed files with 1 additions and 1 deletions
|
@ -560,7 +560,7 @@ static int builtin_complete( wchar_t **argv )
|
||||||
|
|
||||||
for( i=0; i<al_get_count( comp ); i++ )
|
for( i=0; i<al_get_count( comp ); i++ )
|
||||||
{
|
{
|
||||||
completion_t *next = (wchar_t *)al_get( comp, i );
|
completion_t *next = (completion_t *)al_get( comp, i );
|
||||||
if( next->description )
|
if( next->description )
|
||||||
{
|
{
|
||||||
sb_printf( sb_out, L"%ls\t%ls\n", next->completion, next->description );
|
sb_printf( sb_out, L"%ls\t%ls\n", next->completion, next->description );
|
||||||
|
|
Loading…
Reference in a new issue