diff options
author | Catalin Patulea <catalinp@google.com> | 2012-11-09 19:01:26 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-11-26 08:16:38 -0600 |
commit | 7eff57421ff31657434545104b9f91a28e7869ff (patch) | |
tree | c033b2904297966dfedc7106c987806a9d9c047a /ui/vnc.c | |
parent | 06dec08374a4a4bd882994a3dfd103e314584c4c (diff) | |
download | qemu-7eff57421ff31657434545104b9f91a28e7869ff.tar.gz qemu-7eff57421ff31657434545104b9f91a28e7869ff.tar.bz2 qemu-7eff57421ff31657434545104b9f91a28e7869ff.zip |
vnc: fix option misspelling ("non-adapative" -> "non-adaptive")
Signed-off-by: Catalin Patulea <catalinp@google.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'ui/vnc.c')
-rw-r--r-- | ui/vnc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2945,7 +2945,7 @@ void vnc_display_open(DisplayState *ds, const char *display, Error **errp) #endif } else if (strncmp(options, "lossy", 5) == 0) { vs->lossy = true; - } else if (strncmp(options, "non-adapative", 13) == 0) { + } else if (strncmp(options, "non-adaptive", 12) == 0) { vs->non_adaptive = true; } else if (strncmp(options, "share=", 6) == 0) { if (strncmp(options+6, "ignore", 6) == 0) { |