diff mbox

[v2,15/16] vl.c: Use US spelling for "unrecognized"

Message ID 1446057425-16891-16-git-send-email-ehabkost@redhat.com
State New
Headers show

Commit Message

Eduardo Habkost Oct. 28, 2015, 6:37 p.m. UTC
All other error_report() and error_setg() cases use "unrecognized", use
the same spelling here for consistency.

Reported-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
---
 vl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/vl.c b/vl.c
index 686a7d3..6b831eb 100644
--- a/vl.c
+++ b/vl.c
@@ -950,7 +950,7 @@  static struct bt_device_s *bt_device_add(const char *opt)
     if (endp) {
         vlan_id = strtol(endp + 6, &endp, 0);
         if (*endp) {
-            error_report("unrecognised bluetooth vlan Id");
+            error_report("unrecognized bluetooth vlan Id");
             return 0;
         }
     }