Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johnny Cai
wine
Commits
c9742b32
Commit
c9742b32
authored
25 years ago
by
Niels Kristian Bech Jensen
Committed by
Alexandre Julliard
25 years ago
Browse files
Options
Downloads
Patches
Plain Diff
- Fix some compiler warnings.
- Remove superfluous #include statement.
parent
7bfd079b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
dlls/dsound/dsound_main.c
+1
-1
1 addition, 1 deletion
dlls/dsound/dsound_main.c
dlls/winaspi/winaspi16.c
+0
-1
0 additions, 1 deletion
dlls/winaspi/winaspi16.c
graphics/path.c
+3
-3
3 additions, 3 deletions
graphics/path.c
programs/winhelp/macro.yacc.y
+1
-0
1 addition, 0 deletions
programs/winhelp/macro.yacc.y
with
5 additions
and
5 deletions
dlls/dsound/dsound_main.c
+
1
−
1
View file @
c9742b32
...
...
@@ -1192,7 +1192,7 @@ static HRESULT WINAPI IDirectSoundBufferImpl_GetFrequency(
return
DSERR_INVALIDPARAM
;
*
freq
=
This
->
freq
;
TRACE
(
"-> %d
\n
"
,
*
freq
);
TRACE
(
"-> %
l
d
\n
"
,
*
freq
);
return
DS_OK
;
}
...
...
This diff is collapsed.
Click to expand it.
dlls/winaspi/winaspi16.c
+
0
−
1
View file @
c9742b32
...
...
@@ -14,7 +14,6 @@
#include
"aspi.h"
#include
"winescsi.h"
#include
"winaspi.h"
#include
"winescsi.h"
#include
"options.h"
#include
"heap.h"
#include
"debugtools.h"
...
...
This diff is collapsed.
Click to expand it.
graphics/path.c
+
3
−
3
View file @
c9742b32
...
...
@@ -67,7 +67,7 @@ DEFAULT_DEBUG_CHANNEL(gdi)
#define GROW_FACTOR_DENOM 1
/* Denominator of grow factor */
static
BOOL
PATH_PathToRegion
(
const
GdiPath
*
pPath
,
INT
nPolyFillMode
,
static
BOOL
PATH_PathToRegion
(
GdiPath
*
pPath
,
INT
nPolyFillMode
,
HRGN
*
pHrgn
);
static
void
PATH_EmptyPath
(
GdiPath
*
pPath
);
static
BOOL
PATH_AddEntry
(
GdiPath
*
pPath
,
const
POINT
*
pPoint
,
...
...
@@ -1133,7 +1133,7 @@ static BOOL PATH_FlattenPath(GdiPath *pPath)
* error occurs, SetLastError is called with the appropriate value and
* FALSE is returned.
*/
static
BOOL
PATH_PathToRegion
(
const
GdiPath
*
pPath
,
INT
nPolyFillMode
,
static
BOOL
PATH_PathToRegion
(
GdiPath
*
pPath
,
INT
nPolyFillMode
,
HRGN
*
pHrgn
)
{
int
numStrokes
,
iStroke
,
i
;
...
...
@@ -1143,7 +1143,7 @@ static BOOL PATH_PathToRegion(const GdiPath *pPath, INT nPolyFillMode,
assert
(
pPath
!=
NULL
);
assert
(
pHrgn
!=
NULL
);
PATH_FlattenPath
(
pPath
);
PATH_FlattenPath
(
pPath
);
/* FIXME: What happens when number of points is zero? */
...
...
This diff is collapsed.
Click to expand it.
programs/winhelp/macro.yacc.y
+
1
−
0
View file @
c9742b32
...
...
@@ -5,6 +5,7 @@
* Copyright 1996 Ulrich Schmid
*/
#include <stdlib.h>
#include "macro.h"
static int skip = 0;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment