소스 검색

Fix build break

master
Arun Prakash Jana 5 년 전
부모
커밋
ac2a4041b6
No known key found for this signature in database GPG 키 ID: A75979F35C080412
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +4
    -3
      src/nnn.c

+ 4
- 3
src/nnn.c 파일 보기

@@ -1416,6 +1416,7 @@ static int nextsel(int presel)
uint i;
const uint len = LEN(bindings);
#ifdef LINUX_INOTIFY
char *ptr;
struct inotify_event *event;
static char inotify_buf[EVENT_BUF_LEN]
__attribute__ ((aligned(__alignof__(struct inotify_event))));
@@ -1446,9 +1447,9 @@ static int nextsel(int presel)
*/
#ifdef LINUX_INOTIFY
if (!cfg.blkorder && inotify_wd >= 0 && (idle & 1)) {
ssize_t bytes = read(inotify_fd, inotify_buf, EVENT_BUF_LEN);
if (bytes > 0) {
for (char *ptr = inotify_buf; ptr < inotify_buf + bytes;
i = read(inotify_fd, inotify_buf, EVENT_BUF_LEN);
if (i > 0) {
for (ptr = inotify_buf; ptr < inotify_buf + i;
ptr += sizeof(struct inotify_event) + event->len) {
event = (struct inotify_event *) ptr;
DPRINTF_D(event->wd);


불러오는 중...
취소
저장