aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-usb.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-11-28 21:05:17 +0000
committerGuy Harris <guy@alum.mit.edu>2012-11-28 21:05:17 +0000
commit1ce0f9234d3861701115cab165594a608838fac8 (patch)
tree447d5b925743c3f411618d846f27510f5ac65862 /epan/dissectors/packet-usb.c
parentfe9fe6b6e9069e07b9c491918e3e6f127395236c (diff)
"??" introduces a trigraph in C; escape "???" to avoid that.
svn path=/trunk/; revision=46256
Diffstat (limited to 'epan/dissectors/packet-usb.c')
-rw-r--r--epan/dissectors/packet-usb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-usb.c b/epan/dissectors/packet-usb.c
index dc06a0acd4..2a8fc656b6 100644
--- a/epan/dissectors/packet-usb.c
+++ b/epan/dissectors/packet-usb.c
@@ -693,7 +693,7 @@ static const value_string usb_urb_status_vals[] = {
{ -ENODATA, "No data available (-ENODATA)" },
{ -ENOSTR, "Device not a stream (-ENOSTR)" },
{ -EBFONT, "Bad font file format (-EBFONT)" },
- { -58, "(-58 ???)" }, /* dummy so that there are no "gaps" */
+ { -58, "(-58 \?\?\?)" }, /* dummy so that there are no "gaps" */
{ -EBADSLT, "Invalid slot (-EBADSLT)" },
{ -EBADRQC, "Invalid request code (-EBADRQC)" },
{ -ENOANO, "No anode (-ENOANO)" },
@@ -710,7 +710,7 @@ static const value_string usb_urb_status_vals[] = {
{ -ECHRNG, "Channel number out of range (-ECHRNG)" },
{ -EIDRM, "Identifier removed (-EIDRM)" },
{ -ENOMSG, "No message of desired type (-ENOMSG)" },
- { -41, "(-41 ???)" }, /* dummy so that there are no "gaps" */
+ { -41, "(-41 \?\?\?)" }, /* dummy so that there are no "gaps" */
{ -ELOOP, "Too many symbolic links encountered (-ELOOP)" },
{ -ENOTEMPTY, "Directory not empty (-ENOTEMPTY)" },
{ -ENOSYS, "Function not implemented (-ENOSYS)" },