Make sure l is always initialised in termkey_snprint_key()

This commit is contained in:
Paul LeoNerd Evans 2008-11-24 22:05:06 +00:00
parent c8011f4bfd
commit 85be2846c3
1 changed files with 1 additions and 1 deletions

View File

@ -844,7 +844,7 @@ static termkey_keysym register_c0_full(termkey_t *tk, termkey_keysym sym, int mo
size_t termkey_snprint_key(termkey_t *tk, char *buffer, size_t len, termkey_key *key, termkey_format format)
{
size_t pos = 0;
size_t l;
size_t l = 0;
int longmod = format & TERMKEY_FORMAT_LONGMOD;