Changeset eb13ef8 in mainline for uspace/srv/clipboard/clipboard.c
- Timestamp:
- 2019-02-06T13:25:12Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fafb8e5
- Parents:
- bb97118
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-02 14:04:02)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-06 13:25:12)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/clipboard/clipboard.c
rbb97118 reb13ef8 53 53 size_t size; 54 54 55 switch (IPC_GET_ARG1( *req)) {55 switch (IPC_GET_ARG1(req)) { 56 56 case CLIPBOARD_TAG_NONE: 57 57 fibril_mutex_lock(&clip_mtx); … … 99 99 100 100 /* Check for clipboard data tag compatibility */ 101 switch (IPC_GET_ARG1( *req)) {101 switch (IPC_GET_ARG1(req)) { 102 102 case CLIPBOARD_TAG_DATA: 103 103 if (!async_data_read_receive(&call, &size)) { … … 161 161 async_get_call(&call); 162 162 163 if (!IPC_GET_IMETHOD( call)) {163 if (!IPC_GET_IMETHOD(&call)) { 164 164 async_answer_0(&call, EOK); 165 165 break; 166 166 } 167 167 168 switch (IPC_GET_IMETHOD( call)) {168 switch (IPC_GET_IMETHOD(&call)) { 169 169 case CLIPBOARD_PUT_DATA: 170 170 clip_put_data(&call);
Note:
See TracChangeset
for help on using the changeset viewer.