Fix minor error in last commit.

This commit is contained in:
Kris Maglione 2009-10-26 21:30:06 -04:00
parent bbb684ec8e
commit cb8d4bc6e9
1 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,7 @@ wimenu -c <fifo | awk '
# Push out a new set of completions
function update(str, opts) {
print length str >fifo # Print the length of the preceding string
print length(str) >fifo # Print the length of the preceding string
print opts >fifo # and the options themself
fflush(fifo)
}