mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-08-05 19:50:39 +00:00
fix build on mpc85xx
Initialize ret to 0 so compiler no longer complains about monitor.c: In function 'lxc_monitor_open': monitor.c:212:5: error: 'ret' may be used uninitialized in this function [-Werror=maybe-uninitialized] https://github.com/openwrt/packages/issues/1356 Signed-off-by: Daniel Golle <daniel@makrotopia.org>
This commit is contained in:
parent
d9b32b0900
commit
f58ad87a3f
@ -182,7 +182,7 @@ int lxc_monitor_sock_name(const char *lxcpath, struct sockaddr_un *addr) {
|
||||
int lxc_monitor_open(const char *lxcpath)
|
||||
{
|
||||
struct sockaddr_un addr;
|
||||
int fd,ret;
|
||||
int fd,ret = 0;
|
||||
int retry,backoff_ms[] = {10, 50, 100};
|
||||
size_t len;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user