Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/clipboard.c

    r8d6bcc8c rcde999a  
    4545#include <ipc/services.h>
    4646#include <loc.h>
    47 #include <malloc.h>
     47#include <stdlib.h>
    4848#include <str.h>
    4949
     
    9595 * @param str String to put to clipboard or NULL.
    9696 *
    97  * @return Zero on success or negative error code.
     97 * @return Zero on success or an error code.
    9898 *
    9999 */
     
    104104        if (size == 0) {
    105105                async_exch_t *exch = clip_exchange_begin();
    106                 sysarg_t rc = async_req_1_0(exch, CLIPBOARD_PUT_DATA,
     106                int rc = async_req_1_0(exch, CLIPBOARD_PUT_DATA,
    107107                    CLIPBOARD_TAG_NONE);
    108108                clip_exchange_end(exch);
     
    113113                aid_t req = async_send_1(exch, CLIPBOARD_PUT_DATA, CLIPBOARD_TAG_DATA,
    114114                    NULL);
    115                 sysarg_t rc = async_data_write_start(exch, (void *) str, size);
     115                int rc = async_data_write_start(exch, (void *) str, size);
    116116                clip_exchange_end(exch);
    117117               
    118118                if (rc != EOK) {
    119                         sysarg_t rc_orig;
     119                        int rc_orig;
    120120                        async_wait_for(req, &rc_orig);
    121121                        if (rc_orig == EOK)
     
    137137 * @param str Here pointer to the newly allocated string is stored.
    138138 *
    139  * @return Zero on success or negative error code.
     139 * @return Zero on success or an error code.
    140140 *
    141141 */
     
    148148                sysarg_t size;
    149149                sysarg_t tag;
    150                 sysarg_t rc = async_req_0_2(exch, CLIPBOARD_CONTENT, &size, &tag);
     150                int rc = async_req_0_2(exch, CLIPBOARD_CONTENT, &size, &tag);
    151151               
    152152                clip_exchange_end(exch);
     
    185185                       
    186186                        if (rc != EOK) {
    187                                 sysarg_t rc_orig;
     187                                int rc_orig;
    188188                                async_wait_for(req, &rc_orig);
    189189                                if (rc_orig == EOK)
Note: See TracChangeset for help on using the changeset viewer.