diff options
author | Patrik Nyblom <[email protected]> | 2010-03-12 16:09:26 +0100 |
---|---|---|
committer | Patrik Nyblom <[email protected]> | 2010-03-12 16:09:26 +0100 |
commit | 24095d93fb28bdd60abe771a426e39c6ff0f72c7 (patch) | |
tree | 39db453548450175fe1dcd3a78642c496b637285 /erts/emulator/test/driver_SUITE_data | |
parent | 58bf309625bb2fc99a7689d3ce2dcb6de2a3a04c (diff) | |
download | otp-24095d93fb28bdd60abe771a426e39c6ff0f72c7.tar.gz otp-24095d93fb28bdd60abe771a426e39c6ff0f72c7.tar.bz2 otp-24095d93fb28bdd60abe771a426e39c6ff0f72c7.zip |
Teach testcase in driver_suite the new prototype for driver_async
The testcase core dunmped. Also made sure the key could actually store
long integers in driver_async (which is more of a cosmetic change).
Diffstat (limited to 'erts/emulator/test/driver_SUITE_data')
-rw-r--r-- | erts/emulator/test/driver_SUITE_data/peek_non_existing_queue_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/driver_SUITE_data/peek_non_existing_queue_drv.c b/erts/emulator/test/driver_SUITE_data/peek_non_existing_queue_drv.c index f429a5b51e..2ac86b1ec2 100644 --- a/erts/emulator/test/driver_SUITE_data/peek_non_existing_queue_drv.c +++ b/erts/emulator/test/driver_SUITE_data/peek_non_existing_queue_drv.c @@ -127,7 +127,7 @@ static int control(ErlDrvData drv_data, char **rbuf, int rlen) { PeekNonXQDrvData *dp = (PeekNonXQDrvData *) drv_data; - unsigned int key = 0; + unsigned long key = 0; char *res_str = "ok"; ErlDrvSysInfo si; driver_system_info(&si, sizeof(ErlDrvSysInfo)); |