Changeset a46da63 in mainline for libc/generic/time.c


Ignore:
Timestamp:
2006-06-16T20:50:51Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
153a209
Parents:
b34fab6
Message:

big code cleanup, compile with -Wall -Werror to enforce better coding
there is currently one warning that requires attention, please review

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libc/generic/time.c

    rb34fab6 ra46da63  
    2727 */
    2828
    29  /** @addtogroup libc
     29/** @addtogroup libc
    3030 * @{
    3131 */
     
    7474                mapping = as_get_mappable_page(PAGE_SIZE);
    7575                /* Get the mapping of kernel clock */
    76                 res = ipc_call_sync_3(PHONE_NS, IPC_M_AS_AREA_RECV,
    77                                       mapping, PAGE_SIZE, SERVICE_MEM_REALTIME,
    78                                       NULL,&rights,NULL);
     76                res = ipc_call_sync_3(PHONE_NS, IPC_M_AS_AREA_RECV, (sysarg_t) mapping, PAGE_SIZE, SERVICE_MEM_REALTIME, NULL, &rights, NULL);
    7977                if (res) {
    8078                        printf("Failed to initialize timeofday memarea\n");
     
    118116
    119117
    120  /** @}
     118/** @}
    121119 */
    122  
    123  
Note: See TracChangeset for help on using the changeset viewer.