1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Remove dead assignment in 'main'

'ret' is never read anywhere - remove it.
This commit is contained in:
Zdenek Kabelac 2010-11-29 11:23:14 +00:00
parent dce59eb407
commit 2e8d681cf2

View File

@ -1761,7 +1761,6 @@ static void usage(char *prog, FILE *file)
int main(int argc, char *argv[])
{
int ret;
signed char opt;
struct dm_event_fifos fifos;
//struct sys_log logdata = {DAEMON_NAME, LOG_DAEMON};
@ -1835,7 +1834,7 @@ int main(int argc, char *argv[])
pthread_mutex_init(&_global_mutex, NULL);
if ((ret = _open_fifos(&fifos)))
if (_open_fifos(&fifos))
exit(EXIT_FIFO_FAILURE);
/* Signal parent, letting them know we are ready to go. */