Ignore:
Timestamp:
2018-02-28T17:52:03Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3061bc1
Parents:
df6ded8
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
Message:

style: Remove trailing whitespace on non-empty lines, in certain file types.

Command used: tools/srepl '\([^[:space:]]\)\s\+$' '\1' -- *.c *.h *.py *.sh *.s *.S *.ag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/udebug/udebug_ipc.c

    rdf6ded8 r1b20da0  
    194194        IPC_SET_RETVAL(call->data, 0);
    195195        /* ARG1=dest, ARG2=size as in IPC_M_DATA_READ so that
    196            same code in process_answer() can be used 
     196           same code in process_answer() can be used
    197197           (no way to distinguish method in answer) */
    198198        IPC_SET_ARG1(call->data, uspace_addr);
     
    239239        IPC_SET_RETVAL(call->data, 0);
    240240        /* ARG1=dest, ARG2=size as in IPC_M_DATA_READ so that
    241            same code in process_answer() can be used 
     241           same code in process_answer() can be used
    242242           (no way to distinguish method in answer) */
    243243        IPC_SET_ARG1(call->data, uspace_addr);
     
    286286        IPC_SET_RETVAL(call->data, 0);
    287287        /* ARG1=dest, ARG2=size as in IPC_M_DATA_READ so that
    288            same code in process_answer() can be used 
     288           same code in process_answer() can be used
    289289           (no way to distinguish method in answer) */
    290290        IPC_SET_ARG1(call->data, uspace_addr);
     
    327327        IPC_SET_RETVAL(call->data, 0);
    328328        /* ARG1=dest, ARG2=size as in IPC_M_DATA_READ so that
    329            same code in process_answer() can be used 
     329           same code in process_answer() can be used
    330330           (no way to distinguish method in answer) */
    331331        IPC_SET_ARG1(call->data, uspace_addr);
     
    368368        IPC_SET_RETVAL(call->data, 0);
    369369        /* ARG1=dest, ARG2=size as in IPC_M_DATA_READ so that
    370            same code in process_answer() can be used 
     370           same code in process_answer() can be used
    371371           (no way to distinguish method in answer) */
    372372        IPC_SET_ARG1(call->data, uspace_addr);
     
    407407        IPC_SET_RETVAL(call->data, 0);
    408408        /* ARG1=dest, ARG2=size as in IPC_M_DATA_READ so that
    409            same code in process_answer() can be used 
     409           same code in process_answer() can be used
    410410           (no way to distinguish method in answer) */
    411411        IPC_SET_ARG1(call->data, uspace_dst);
     
    438438                        IPC_SET_RETVAL(call->data, EINVAL);
    439439                        ipc_answer(&TASK->kb.box, call);
    440                         return; 
     440                        return;
    441441                }
    442442        }
Note: See TracChangeset for help on using the changeset viewer.