Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnish-cache
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
varnishcache
varnish-cache
Commits
2e610e1c
Commit
2e610e1c
authored
Apr 26, 2017
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More Flexelintery
parent
d5c05a8b
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
6 additions
and
11 deletions
+6
-11
flint.lnt
bin/varnishd/flint.lnt
+0
-1
flint.lnt
bin/varnishlog/flint.lnt
+0
-1
flint.lnt
bin/varnishncsa/flint.lnt
+0
-1
flint.lnt
bin/varnishstat/flint.lnt
+0
-1
flint.lnt
bin/varnishtest/flint.lnt
+0
-1
flint.lnt
bin/varnishtop/flint.lnt
+0
-1
flint.lnt
flint.lnt
+1
-0
flint.lnt
lib/libvarnish/flint.lnt
+0
-1
vsl.c
lib/libvarnishapi/vsl.c
+5
-3
flint.lnt
lib/libvcc/flint.lnt
+0
-1
No files found.
bin/varnishd/flint.lnt
View file @
2e610e1c
...
...
@@ -136,7 +136,6 @@
// Review all below this line ///////////////////////////////////////////////
-e737 // 143 Loss of sign in promotion from ___ to ___
-e713 // 42 Loss of precision (___) (___ to ___)
-e574 // 48 Signed-unsigned mix with relational
-e840 // Use of nul character in a string literal (see: vcc_if.c)
...
...
bin/varnishlog/flint.lnt
View file @
2e610e1c
...
...
@@ -6,7 +6,6 @@
-efile(451, "varnishlog_options.h")
-e732 // Loss of sign (arg. no. 2) (int to unsigned
-e737 // [45] Loss of sign in promotion from int to unsigned
-e713 // Loss of precision (assignment) (unsigned long long to long long)
-e574 // Signed-unsigned mix with relational
...
...
bin/varnishncsa/flint.lnt
View file @
2e610e1c
...
...
@@ -22,6 +22,5 @@
-e534 // Ignoring return value of function
-e557 // unrecog format
-e732 // Loss of sign (arg. no. 2) (int to unsigned
-e737 // [45] Loss of sign in promotion from int to unsigned
-e788 // tag not used in defaulted switch
bin/varnishstat/flint.lnt
View file @
2e610e1c
...
...
@@ -11,7 +11,6 @@
-e763 // Redundant declaration for symbol '...' previously declared
-e732 // Loss of sign (arg. no. 2) (int to unsigned
-e737 // [45] Loss of sign in promotion from int to unsigned
-e713 // Loss of precision (assignment) (unsigned long long to long long)
-e574 // Signed-unsigned mix with relational
...
...
bin/varnishtest/flint.lnt
View file @
2e610e1c
...
...
@@ -23,7 +23,6 @@
//
-e732 // Loss of sign (arg. no. 2) (int to unsigned
-e737 // [45] Loss of sign in promotion from int to unsigned
-e713 // Loss of precision (assignment) (unsigned long long to long long)
-e574 // Signed-unsigned mix with relational
-emacro(835, STRTOU32_CHECK) // A zero has been given as ___ argument to operator '___'
...
...
bin/varnishtop/flint.lnt
View file @
2e610e1c
...
...
@@ -5,7 +5,6 @@
-e763 // Redundant declaration for symbol '...' previously declared
-e732 // Loss of sign (arg. no. 2) (int to unsigned
-e737 // [45] Loss of sign in promotion from int to unsigned
-e713 // Loss of precision (assignment) (unsigned long long to long long)
-e574 // Signed-unsigned mix with relational
...
...
flint.lnt
View file @
2e610e1c
...
...
@@ -31,6 +31,7 @@
-e716 // while(1) ...
-e726 // Extraneous comma ignored
-e728 // Symbol ... not explicitly initialized
-e737 // Loss of sign in promotion from int to unsigned int
-e763 // Redundant declaration for symbol '...' previously declared
-e777 // Testing floats for equality
-e785 // Too few initializers for aggregate
...
...
lib/libvarnish/flint.lnt
View file @
2e610e1c
...
...
@@ -59,7 +59,6 @@
// Review all below this line ///////////////////////////////////////////////
-e732 // Loss of sign (arg. no. 2) (int to unsigned
-e737 // [45] Loss of sign in promotion from int to unsigned
-e713 // Loss of precision (assignment) (unsigned long long to long long)
-e574 // Signed-unsigned mix with relational
-e712 // Loss of precision (assignment) (long long to
...
...
lib/libvarnishapi/vsl.c
View file @
2e610e1c
...
...
@@ -366,8 +366,9 @@ VSL_PrintTransactions(struct VSL_data *vsl, struct VSL_transaction * const pt[],
if
(
t
->
level
>
3
)
VSL_PRINT
(
fo
,
"*%1.1u* "
,
t
->
level
);
else
VSL_PRINT
(
fo
,
"%-3.*s "
,
t
->
level
,
"***"
);
VSL_PRINT
(
fo
,
"%*.s%-14s %*.s%-10u
\n
"
,
VSL_PRINT
(
fo
,
"%-3.*s "
,
(
int
)(
t
->
level
),
"***"
);
VSL_PRINT
(
fo
,
"%*.s%-14s %*.s%-10d
\n
"
,
verbose
?
10
+
1
:
0
,
" "
,
VSL_transactions
[
t
->
type
],
verbose
?
1
+
1
:
0
,
" "
,
...
...
@@ -387,7 +388,8 @@ VSL_PrintTransactions(struct VSL_data *vsl, struct VSL_transaction * const pt[],
if
(
t
->
level
>
3
)
VSL_PRINT
(
fo
,
"-%1.1u- "
,
t
->
level
);
else
if
(
t
->
level
)
VSL_PRINT
(
fo
,
"%-3.*s "
,
t
->
level
,
"---"
);
VSL_PRINT
(
fo
,
"%-3.*s "
,
(
int
)(
t
->
level
),
"---"
);
if
(
verbose
)
i
=
VSL_Print
(
vsl
,
t
->
c
,
fo
);
else
...
...
lib/libvcc/flint.lnt
View file @
2e610e1c
...
...
@@ -33,7 +33,6 @@
-e763 // Redundant declaration for symbol '...' previously declared
-e737 // Loss of sign in promotion from int to unsigned int
-e534 // Ignoring return value of function
-e506 // Constant value boolean
-e774 // Boolean within 'if' always evaluates to False
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment