clang: Fix some simple issues

Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
This commit is contained in:
Stéphane Graber 2013-10-23 21:42:42 -04:00
parent aea1cd3cb7
commit 8f47bc3f31
No known key found for this signature in database
GPG Key ID: C638974D64792D67
5 changed files with 9 additions and 7 deletions

View File

@ -901,7 +901,7 @@ static int config_hook(const char *key, const char *value,
return -1;
}
static int config_personality(const char *key, const const char *value,
static int config_personality(const char *key, const char *value,
struct lxc_conf *lxc_conf)
{
signed long personality = lxc_config_parse_arch(value);

View File

@ -47,8 +47,6 @@
lxc_log_define(lxc_monitord, lxc);
static struct lxc_monitor mon;
static void lxc_monitord_cleanup(void);
/*
@ -71,6 +69,8 @@ struct lxc_monitor {
struct lxc_epoll_descr descr;
};
static struct lxc_monitor mon;
static int lxc_monitord_fifo_create(struct lxc_monitor *mon)
{
char fifo_path[PATH_MAX];
@ -379,7 +379,8 @@ int main(int argc, char *argv[])
* if-empty-statement construct is to quiet the
* warn-unused-result warning.
*/
if (write(pipefd, "S", 1)) ;
if (write(pipefd, "S", 1))
;
close(pipefd);
if (lxc_monitord_mainloop_add(&mon)) {

View File

@ -328,7 +328,8 @@ int lxc_monitord_spawn(const char *lxcpath)
* synced with the child process. the if-empty-statement
* construct is to quiet the warn-unused-result warning.
*/
if (read(pipefd[0], &c, 1)) ;
if (read(pipefd[0], &c, 1))
;
close(pipefd[0]);
exit(EXIT_SUCCESS);
}

View File

@ -23,7 +23,7 @@
#include "../config.h"
const char const* lxc_version(void)
const char *lxc_version(void)
{
return PACKAGE_VERSION;
}

View File

@ -26,6 +26,6 @@
/*
* Returns the version number of the library
*/
extern const char const *lxc_version(void);
extern const char *lxc_version(void);
#endif