Changeset 8b901f9 in mainline


Ignore:
Timestamp:
2010-02-16T20:16:19Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
aa8267c
Parents:
209faf9
Message:

Make sure to pass compatible pointer type to async functions.
Passing a pointer to a 32-bit object when a pointer to a 64-bit
object is expected is generally a bad idea.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/structures/packet/packet_remote.c

    r209faf9 r8b901f9  
    6565        ERROR_DECLARE;
    6666
    67         unsigned int            size;
     67        ipcarg_t                        size;
    6868        packet_t                        next;
    6969
     
    102102
    103103        packet_id_t     packet_id;
    104         unsigned int size;
     104        ipcarg_t size;
    105105        packet_t packet;
    106106
     
    121121
    122122        packet_id_t     packet_id;
    123         unsigned int    size;
     123        ipcarg_t        size;
    124124        packet_t        packet;
    125125
Note: See TracChangeset for help on using the changeset viewer.