clang: Fix some simple issues

parent aea1cd3c
......@@ -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);
......
......@@ -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)) {
......
......@@ -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);
}
......
......@@ -23,7 +23,7 @@
#include "../config.h"
const char const* lxc_version(void)
const char *lxc_version(void)
{
return PACKAGE_VERSION;
}
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment