Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mobject-store
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
11
Issues
11
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sds
mobject-store
Commits
9ca93447
Commit
9ca93447
authored
Feb 13, 2019
by
Shane Snyder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pool-size needs to be unsigned
parent
87213431
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/server/mobject-server-daemon.c
src/server/mobject-server-daemon.c
+2
-2
No files found.
src/server/mobject-server-daemon.c
View file @
9ca93447
...
...
@@ -32,7 +32,7 @@ typedef struct {
typedef
struct
{
char
*
listen_addr
;
char
*
cluster_file
;
in
t
pool_size
;
size_
t
pool_size
;
}
mobject_server_options
;
static
void
usage
(
void
)
...
...
@@ -57,7 +57,7 @@ static void parse_args(int argc, char **argv, mobject_server_options *opts)
switch
(
c
)
{
case
'p'
:
opts
->
pool_size
=
atoi
(
optarg
);
opts
->
pool_size
=
strtoul
(
optarg
,
NULL
,
0
);
break
;
default:
usage
();
...
...
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