summaryrefslogtreecommitdiff
path: root/sbin/pfctl/parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/pfctl/parse.y')
-rw-r--r--sbin/pfctl/parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/parse.y b/sbin/pfctl/parse.y
index 36f05bfa565..8bf5604583f 100644
--- a/sbin/pfctl/parse.y
+++ b/sbin/pfctl/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.608 2011/08/30 00:43:57 mikeb Exp $ */
+/* $OpenBSD: parse.y,v 1.609 2011/09/07 23:40:52 haesbaert Exp $ */
/*
* Copyright (c) 2001 Markus Friedl. All rights reserved.
@@ -3381,7 +3381,7 @@ tos : STRING {
| NUMBER {
$$ = $1;
if ($$ > 255) {
- yyerror("illegal tos value %s", $1);
+ yyerror("illegal tos value %lu", $1);
YYERROR;
}
}