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
05001b1c
Commit
05001b1c
authored
Aug 11, 2006
by
Dan Hipschman
Committed by
Alexandre Julliard
Aug 11, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Don't generate indentation spaces on empty lines.
parent
5da3e551
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
6 deletions
+9
-6
client.c
tools/widl/client.c
+3
-2
proxy.c
tools/widl/proxy.c
+3
-2
server.c
tools/widl/server.c
+3
-2
No files found.
tools/widl/client.c
View file @
05001b1c
...
...
@@ -50,8 +50,9 @@ static int print_client( const char *format, ... )
int
i
,
r
;
va_start
(
va
,
format
);
for
(
i
=
0
;
i
<
indent
;
i
++
)
fprintf
(
client
,
" "
);
if
(
format
[
0
]
!=
'\n'
)
for
(
i
=
0
;
i
<
indent
;
i
++
)
fprintf
(
client
,
" "
);
r
=
vfprintf
(
client
,
format
,
va
);
va_end
(
va
);
return
r
;
...
...
tools/widl/proxy.c
View file @
05001b1c
...
...
@@ -56,8 +56,9 @@ static int print_proxy( const char *format, ... )
int
i
,
r
;
va_start
(
va
,
format
);
for
(
i
=
0
;
i
<
indent
;
i
++
)
fprintf
(
proxy
,
" "
);
if
(
format
[
0
]
!=
'\n'
)
for
(
i
=
0
;
i
<
indent
;
i
++
)
fprintf
(
proxy
,
" "
);
r
=
vfprintf
(
proxy
,
format
,
va
);
va_end
(
va
);
return
r
;
...
...
tools/widl/server.c
View file @
05001b1c
...
...
@@ -52,8 +52,9 @@ static int print_server(const char *format, ...)
int
i
,
r
;
va_start
(
va
,
format
);
for
(
i
=
0
;
i
<
indent
;
i
++
)
fprintf
(
server
,
" "
);
if
(
format
[
0
]
!=
'\n'
)
for
(
i
=
0
;
i
<
indent
;
i
++
)
fprintf
(
server
,
" "
);
r
=
vfprintf
(
server
,
format
,
va
);
va_end
(
va
);
return
r
;
...
...
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