/alps/ipecamera

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/ipecamera

« back to all changes in this revision

Viewing changes to base.c

  • Committer: Suren A. Chilingaryan
  • Date: 2015-04-29 02:50:52 UTC
  • Revision ID: csa@suren.me-20150429025052-2ivr7bkemzj7svzi
Added a small grabbing example

Show diffs side-by-side

added added

removed removed

Lines of Context:
179
179
        return PCILIB_ERROR_INVALID_REQUEST;
180
180
    }
181
181
    
182
 
    if (((size^(size-1)) < size) < size) {
 
182
    if ((size^(size-1)) < size) {
183
183
        pcilib_error("The buffer size is not power of 2");
184
184
    }
185
185