Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
d0c5f149
Commit
d0c5f149
authored
Feb 06, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 06, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add trailing '\n's to ok() and trace() calls.
parent
f71c5b4e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
main.c
dlls/secur32/tests/main.c
+4
-4
info.c
dlls/winspool/tests/info.c
+1
-1
No files found.
dlls/secur32/tests/main.c
View file @
d0c5f149
...
...
@@ -206,14 +206,14 @@ SECURITY_STATUS setupBuffers(PSecBufferDesc *new_in_buf,
PSecBuffer
sec_buffer
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
SecBuffer
));
if
(
sec_buffer
==
NULL
){
trace
(
"in_buf: sec_buffer == NULL"
);
trace
(
"in_buf: sec_buffer == NULL
\n
"
);
return
SEC_E_INSUFFICIENT_MEMORY
;
}
buffer
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
);
if
(
buffer
==
NULL
){
trace
(
"in_buf: buffer == NULL"
);
trace
(
"in_buf: buffer == NULL
\n
"
);
return
SEC_E_INSUFFICIENT_MEMORY
;
}
...
...
@@ -239,14 +239,14 @@ SECURITY_STATUS setupBuffers(PSecBufferDesc *new_in_buf,
PBYTE
buffer
=
NULL
;
if
(
sec_buffer
==
NULL
){
trace
(
"out_buf: sec_buffer == NULL"
);
trace
(
"out_buf: sec_buffer == NULL
\n
"
);
return
SEC_E_INSUFFICIENT_MEMORY
;
}
buffer
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
);
if
(
buffer
==
NULL
){
trace
(
"out_buf: buffer == NULL"
);
trace
(
"out_buf: buffer == NULL
\n
"
);
return
SEC_E_INSUFFICIENT_MEMORY
;
}
...
...
dlls/winspool/tests/info.c
View file @
d0c5f149
...
...
@@ -249,7 +249,7 @@ static void test_GetPrinterDriverDirectory(void)
res
=
GetPrinterDriverDirectoryA
(
NULL
,
NULL
,
1
,
NULL
,
cbBuf
,
NULL
);
ok
(
res
||
(
GetLastError
()
==
RPC_X_NULL_REF_POINTER
),
"returned %d with %ld (expected '!=0' or '0' with "
\
"RPC_X_NULL_REF_POINTER)"
,
res
,
GetLastError
());
"RPC_X_NULL_REF_POINTER)
\n
"
,
res
,
GetLastError
());
/* with a valid buffer, but level is too large */
...
...
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