diff options
author | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2013-04-17 18:41:35 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2013-04-17 18:41:35 +0200 |
commit | fda2d65fa7e38f0e30101bce657685a8c637cb13 (patch) | |
tree | d5c599cdd160bacb6ed2ca320278046d25baf286 /ipecamera/events.c | |
parent | b2bead6a5fd74b4543c7bb9278558ff485c22995 (diff) | |
parent | 821a945eafaf63963d56c9bdef773760bea9a41d (diff) | |
download | pcitool-fda2d65fa7e38f0e30101bce657685a8c637cb13.tar.gz pcitool-fda2d65fa7e38f0e30101bce657685a8c637cb13.tar.bz2 pcitool-fda2d65fa7e38f0e30101bce657685a8c637cb13.tar.xz pcitool-fda2d65fa7e38f0e30101bce657685a8c637cb13.zip |
Merge important fixes for operation under LibUCA control
Diffstat (limited to 'ipecamera/events.c')
-rw-r--r-- | ipecamera/events.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ipecamera/events.c b/ipecamera/events.c index 58c29a1..3253fc5 100644 --- a/ipecamera/events.c +++ b/ipecamera/events.c @@ -139,7 +139,7 @@ int ipecamera_next_event(pcilib_context_t *vctx, pcilib_timeout_t timeout, pcili } retry: - if ((ctx->event_id - ctx->reported_id) > (ctx->buffer_size - IPECAMERA_RESERVE_BUFFERS)) ctx->reported_id = ctx->event_id - (ctx->buffer_size - 1) - IPECAMERA_RESERVE_BUFFERS; + if ((ctx->event_id - ctx->reported_id) > (ctx->buffer_size - IPECAMERA_RESERVE_BUFFERS)) ctx->reported_id = ctx->event_id - (ctx->buffer_size - 1 - IPECAMERA_RESERVE_BUFFERS); else ++ctx->reported_id; if (evid) *evid = ctx->reported_id; @@ -152,9 +152,9 @@ retry: else return PCILIB_ERROR_INVALID_ARGUMENT; } - + if ((ctx->event_id - ctx->reported_id) >= ctx->buffer_size) goto retry; - + return 0; } |