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
f12f8503
Commit
f12f8503
authored
Jan 21, 2010
by
Rob Shearman
Committed by
Alexandre Julliard
Jan 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Fix symbol was not declared and using plain integer as NULL pointer sparse warnings.
parent
903f6868
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
change.c
server/change.c
+2
-2
main.c
server/main.c
+8
-8
No files found.
server/change.c
View file @
f12f8503
...
...
@@ -451,8 +451,8 @@ struct inode {
char
*
name
;
/* basename name of the inode */
};
struct
list
inode_hash
[
HASH_SIZE
];
struct
list
wd_hash
[
HASH_SIZE
];
st
atic
st
ruct
list
inode_hash
[
HASH_SIZE
];
st
atic
st
ruct
list
wd_hash
[
HASH_SIZE
];
static
int
inotify_add_dir
(
char
*
path
,
unsigned
int
filter
);
...
...
server/main.c
View file @
f12f8503
...
...
@@ -65,14 +65,14 @@ static void parse_args( int argc, char *argv[] )
static
struct
option
long_options
[]
=
{
{
"debug"
,
2
,
0
,
'd'
},
{
"foreground"
,
0
,
0
,
'f'
},
{
"help"
,
0
,
0
,
'h'
},
{
"kill"
,
2
,
0
,
'k'
},
{
"persistent"
,
2
,
0
,
'p'
},
{
"version"
,
0
,
0
,
'v'
},
{
"wait"
,
0
,
0
,
'w'
},
{
NULL
,
0
,
0
,
0
}
{
"debug"
,
2
,
NULL
,
'd'
},
{
"foreground"
,
0
,
NULL
,
'f'
},
{
"help"
,
0
,
NULL
,
'h'
},
{
"kill"
,
2
,
NULL
,
'k'
},
{
"persistent"
,
2
,
NULL
,
'p'
},
{
"version"
,
0
,
NULL
,
'v'
},
{
"wait"
,
0
,
NULL
,
'w'
},
{
NULL
,
0
,
NULL
,
0
}
};
server_argv0
=
argv
[
0
];
...
...
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