From: José Bollo Date: Fri, 16 Mar 2018 10:37:01 +0000 (+0100) Subject: fdev: Improve readability X-Git-Tag: flounder_5.99.1~42 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=5b26086e8e634d1fcd2e65dc164fd3453f43942b;hp=428dd77c7ef528dd1769d7c9bb95cd0fb2eaf2a8;p=src%2Fapp-framework-binder.git fdev: Improve readability Change-Id: If81cdf43703b6ff3128ea79940ce240f56918b9d Signed-off-by: José Bollo --- diff --git a/src/fdev.c b/src/fdev.c index 5c31d31b..8ad79b5f 100644 --- a/src/fdev.c +++ b/src/fdev.c @@ -45,7 +45,7 @@ struct fdev *fdev_create(int fd) else { fdev->fd = fd; fdev->refcount = 3; /* set autoclose by default */ - fdev->repeat = -1; + fdev->repeat = -1; /* always repeat by default */ } return fdev; } @@ -151,8 +151,8 @@ void fdev_set_repeat(struct fdev *fdev, int count) void fdev_set_autoclose(struct fdev *fdev, int autoclose) { if (autoclose) - fdev->refcount |= 1; + fdev->refcount |= (unsigned)1; else - fdev->refcount &= -2; + fdev->refcount &= ~(unsigned)1; }