Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
2ea9518a
Commit
2ea9518a
authored
Jan 23, 2013
by
antirez
Browse files
Fixed over-80-cols comment in db.c
parent
08d8bb57
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/db.c
View file @
2ea9518a
...
@@ -382,7 +382,8 @@ void renameGenericCommand(redisClient *c, int nx) {
...
@@ -382,7 +382,8 @@ void renameGenericCommand(redisClient *c, int nx) {
addReply
(
c
,
shared
.
czero
);
addReply
(
c
,
shared
.
czero
);
return
;
return
;
}
}
/* Overwrite: delete the old key before creating the new one with the same name. */
/* Overwrite: delete the old key before creating the new one
* with the same name. */
dbDelete
(
c
->
db
,
c
->
argv
[
2
]);
dbDelete
(
c
->
db
,
c
->
argv
[
2
]);
}
}
dbAdd
(
c
->
db
,
c
->
argv
[
2
],
o
);
dbAdd
(
c
->
db
,
c
->
argv
[
2
],
o
);
...
...
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