Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
38d15b65
Commit
38d15b65
authored
Jun 27, 2007
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PPPOL2TP]: Use proper printf format specifier for size_t.
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
3557baab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
drivers/net/pppol2tp.c
drivers/net/pppol2tp.c
+2
-2
No files found.
drivers/net/pppol2tp.c
View file @
38d15b65
...
...
@@ -890,11 +890,11 @@ static int pppol2tp_sendmsg(struct kiocb *iocb, struct socket *sock, struct msgh
/* Debug */
if
(
session
->
send_seq
)
PRINTK
(
session
->
debug
,
PPPOL2TP_MSG_DATA
,
KERN_DEBUG
,
"%s: send %d bytes, ns=%hu
\n
"
,
session
->
name
,
"%s: send %
Z
d bytes, ns=%hu
\n
"
,
session
->
name
,
total_len
,
session
->
ns
-
1
);
else
PRINTK
(
session
->
debug
,
PPPOL2TP_MSG_DATA
,
KERN_DEBUG
,
"%s: send %d bytes
\n
"
,
session
->
name
,
total_len
);
"%s: send %
Z
d bytes
\n
"
,
session
->
name
,
total_len
);
if
(
session
->
debug
&
PPPOL2TP_MSG_DATA
)
{
int
i
;
...
...
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