Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
7460b042
Commit
7460b042
authored
Oct 02, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 03, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcss: Win64 printf format warning fixes.
parent
cdc01c75
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
programs/rpcss/Makefile.in
+0
-1
np_server.c
programs/rpcss/np_server.c
+3
-3
No files found.
programs/rpcss/Makefile.in
View file @
7460b042
...
...
@@ -5,7 +5,6 @@ VPATH = @srcdir@
MODULE
=
rpcss.exe
APPMODE
=
-mconsole
IMPORTS
=
kernel32
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
\
epmap_server.c
\
...
...
programs/rpcss/np_server.c
View file @
7460b042
...
...
@@ -204,7 +204,7 @@ static VOID HandlerThread(LPVOID lpvPipeHandle)
);
if
(
(
!
success
)
||
(
bytesread
!=
sizeof
(
RPCSS_NP_MESSAGE
))
||
(
vardata_payload_msg
.
message_type
!=
RPCSS_NP_MESSAGE_TYPEID_VARDATAPAYLOADMSG
)
)
{
WINE_ERR
(
"vardata payload read failure! (s=%s,br=%l
d,mt=%u,mt_exp=%u
\n
"
,
WINE_ERR
(
"vardata payload read failure! (s=%s,br=%
d,mt=%u,mt_exp=%u
\n
"
,
success
?
"TRUE"
:
"FALSE"
,
bytesread
,
vardata_payload_msg
.
message_type
,
RPCSS_NP_MESSAGE_TYPEID_VARDATAPAYLOADMSG
);
success
=
FALSE
;
...
...
@@ -237,7 +237,7 @@ static VOID HandlerThread(LPVOID lpvPipeHandle)
);
if
(
(
!
success
)
||
(
written
!=
sizeof
(
RPCSS_NP_REPLY
))
)
WINE_WARN
(
"Message reply failed. (success=%d, br=%
l
d)
\n
"
,
success
,
written
);
WINE_WARN
(
"Message reply failed. (success=%d, br=%d)
\n
"
,
success
,
written
);
else
WINE_TRACE
(
"Reply sent successfully.
\n
"
);
}
else
...
...
@@ -425,7 +425,7 @@ static BOOL RPCSS_SendReceiveNPMsg(HANDLE np, PRPCSS_NP_MESSAGE msg, PRPCSS_NP_R
}
if
(
count
!=
sizeof
(
RPCSS_NP_REPLY
))
{
WINE_ERR
(
"read count mismatch, got %
l
d.
\n
"
,
count
);
WINE_ERR
(
"read count mismatch, got %d.
\n
"
,
count
);
return
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