Changes in uspace/srv/clip/clip.c [b4cbef1:ed903174] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/clip/clip.c
rb4cbef1 red903174 65 65 break; 66 66 case CLIPBOARD_TAG_DATA: 67 rc = async_data_ receive(&data, 0, 0, 0, &size);67 rc = async_data_write_accept((void **) &data, false, 0, 0, 0, &size); 68 68 if (rc != EOK) { 69 69 ipc_answer_0(rid, rc); … … 145 145 146 146 fibril_mutex_unlock(&clip_mtx); 147 ipc_answer_2(rid, EOK, (ipcarg_t) size, (ipcarg_t) clip_tag);147 ipc_answer_2(rid, EOK, (ipcarg_t) size, (ipcarg_t) tag); 148 148 } 149 149
Note:
See TracChangeset
for help on using the changeset viewer.