diff options
| author | 2000-09-10 22:18:49 +0000 | |
|---|---|---|
| committer | 2000-09-10 22:18:49 +0000 | |
| commit | d93e0e84c97cebac079f70fff8dc89159f3b98dd (patch) | |
| tree | 7f86d205971f5cbcf2c85511493b3769a143190e /src/main.c | |
| parent | Added control files for Debian packages. (diff) | |
Work around compiler warnings for int/ptr casts.
git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@38 53a565d1-3bb7-0310-b661-cf11e63c67ab
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -158,7 +158,7 @@ int raw1394_get_port_info(struct raw1394_handle *handle, CLEAR_REQ(req); req->type = RAW1394_REQ_LIST_CARDS; req->generation = handle->generation; - req->recvb = (__u64)handle->buffer; + req->recvb = ptr2int(handle->buffer); req->length = HBUF_SIZE; while (1) { |
