Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
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
Иван Мажукин
mpd
Commits
a8487442
Commit
a8487442
authored
Sep 25, 2012
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
command: remove enum integer values
Just use the values assigned by the compiler.
parent
f38dfd92
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
command.h
src/command.h
+4
-4
No files found.
src/command.h
View file @
a8487442
...
...
@@ -25,10 +25,10 @@
#include <stdbool.h>
enum
command_return
{
COMMAND_RETURN_
ERROR
=
-
1
,
COMMAND_RETURN_
OK
=
0
,
COMMAND_RETURN_
KILL
=
10
,
COMMAND_RETURN_
CLOSE
=
20
,
COMMAND_RETURN_
OK
,
COMMAND_RETURN_
ERROR
,
COMMAND_RETURN_
CLOSE
,
COMMAND_RETURN_
KILL
,
};
struct
client
;
...
...
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