diff options
author | a@null <unknown> | 2008-12-09 21:55:47 +0000 |
---|---|---|
committer | a@null <unknown> | 2008-12-09 21:55:47 +0000 |
commit | 4e74263ba02edc7da07f23b2737a1e471375a6e8 (patch) | |
tree | db29579989519730d4c65f9a5b98d1ca5dad94b0 | |
parent | bab59a980716e5f210f27e92b11a53517412bc5f (diff) |
minor modification
-rw-r--r-- | dmenu.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -396,10 +396,7 @@ kpress(XKeyEvent * e) { default: if(num && !iscntrl((int) buf[0])) { buf[num] = 0; - if(len > 0) - strncat(text, buf, sizeof text); - else - strncpy(text, buf, sizeof text); + strncpy(text + len, buf, sizeof text - len); match(text); } break; |