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