Formatting: adjust indentation in copypacket()
Fixes the level of indentation in the routine copypacket(). Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com> Change-Id: Id788a3a8ef211c9b75c67bd511fad4e624f58e5a
This commit is contained in:
parent
7e0ee5ab3e
commit
fe4c22852a
1 changed files with 9 additions and 9 deletions
|
@ -54,18 +54,18 @@
|
||||||
|
|
||||||
static void copypacket(struct k_args **out, struct k_args *in)
|
static void copypacket(struct k_args **out, struct k_args *in)
|
||||||
{
|
{
|
||||||
/* As <in> is a local packet, get a new command packet. */
|
/* As <in> is a local packet, get a new command packet. */
|
||||||
|
|
||||||
GETARGS(*out);
|
GETARGS(*out);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copy the data from <in> to <*out> and create
|
* Copy the data from <in> to <*out> and create
|
||||||
* a backpointer to the original packet.
|
* a backpointer to the original packet.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
k_memcpy_s(*out, sizeof(struct k_args),
|
k_memcpy_s(*out, sizeof(struct k_args),
|
||||||
in, sizeof(struct k_args));
|
in, sizeof(struct k_args));
|
||||||
(*out)->Ctxt.args = in;
|
(*out)->Ctxt.args = in;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue