mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-08-07 11:39:04 +00:00
clang: Fix some simple issues
Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
This commit is contained in:
parent
aea1cd3cb7
commit
8f47bc3f31
@ -901,7 +901,7 @@ static int config_hook(const char *key, const char *value,
|
|||||||
return -1;
|
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)
|
struct lxc_conf *lxc_conf)
|
||||||
{
|
{
|
||||||
signed long personality = lxc_config_parse_arch(value);
|
signed long personality = lxc_config_parse_arch(value);
|
||||||
|
@ -47,8 +47,6 @@
|
|||||||
|
|
||||||
lxc_log_define(lxc_monitord, lxc);
|
lxc_log_define(lxc_monitord, lxc);
|
||||||
|
|
||||||
static struct lxc_monitor mon;
|
|
||||||
|
|
||||||
static void lxc_monitord_cleanup(void);
|
static void lxc_monitord_cleanup(void);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -71,6 +69,8 @@ struct lxc_monitor {
|
|||||||
struct lxc_epoll_descr descr;
|
struct lxc_epoll_descr descr;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct lxc_monitor mon;
|
||||||
|
|
||||||
static int lxc_monitord_fifo_create(struct lxc_monitor *mon)
|
static int lxc_monitord_fifo_create(struct lxc_monitor *mon)
|
||||||
{
|
{
|
||||||
char fifo_path[PATH_MAX];
|
char fifo_path[PATH_MAX];
|
||||||
@ -379,7 +379,8 @@ int main(int argc, char *argv[])
|
|||||||
* if-empty-statement construct is to quiet the
|
* if-empty-statement construct is to quiet the
|
||||||
* warn-unused-result warning.
|
* warn-unused-result warning.
|
||||||
*/
|
*/
|
||||||
if (write(pipefd, "S", 1)) ;
|
if (write(pipefd, "S", 1))
|
||||||
|
;
|
||||||
close(pipefd);
|
close(pipefd);
|
||||||
|
|
||||||
if (lxc_monitord_mainloop_add(&mon)) {
|
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
|
* synced with the child process. the if-empty-statement
|
||||||
* construct is to quiet the warn-unused-result warning.
|
* construct is to quiet the warn-unused-result warning.
|
||||||
*/
|
*/
|
||||||
if (read(pipefd[0], &c, 1)) ;
|
if (read(pipefd[0], &c, 1))
|
||||||
|
;
|
||||||
close(pipefd[0]);
|
close(pipefd[0]);
|
||||||
exit(EXIT_SUCCESS);
|
exit(EXIT_SUCCESS);
|
||||||
}
|
}
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
|
|
||||||
const char const* lxc_version(void)
|
const char *lxc_version(void)
|
||||||
{
|
{
|
||||||
return PACKAGE_VERSION;
|
return PACKAGE_VERSION;
|
||||||
}
|
}
|
||||||
|
@ -26,6 +26,6 @@
|
|||||||
/*
|
/*
|
||||||
* Returns the version number of the library
|
* Returns the version number of the library
|
||||||
*/
|
*/
|
||||||
extern const char const *lxc_version(void);
|
extern const char *lxc_version(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user