diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-06-09 21:50:02 +0300 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-06-09 21:50:02 +0300 |
commit | 6555ba9052d9621ebb305d880633ad6b1b57729f (patch) | |
tree | be4fb7cfe34d81fcf8c7cc985118426331c15e2a | |
parent | c6e1fc03517ce5117129abe1cfd26b5cb3a5e209 (diff) | |
download | qemu-6555ba9052d9621ebb305d880633ad6b1b57729f.tar.gz qemu-6555ba9052d9621ebb305d880633ad6b1b57729f.tar.bz2 qemu-6555ba9052d9621ebb305d880633ad6b1b57729f.zip |
Fix Sparse warning
Fix this warning:
./qemu-options.h:198:1: error: expected preprocessor identifier
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rw-r--r-- | qemu-options.hx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-options.hx b/qemu-options.hx index 87af798419..fa549c36e2 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -723,7 +723,7 @@ STEXI @table @option ETEXI -DEF("net", HAS_ARG, QEMU_OPTION_net, \ +DEF("net", HAS_ARG, QEMU_OPTION_net, "-net nic[,vlan=n][,macaddr=addr][,model=type][,name=str]\n" " create a new Network Interface Card and connect it to VLAN 'n'\n" #ifdef CONFIG_SLIRP |