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:
Peter Mitsis 2015-04-20 16:14:14 -04:00 committed by Anas Nashif
commit fe4c22852a

View file

@ -54,18 +54,18 @@
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
* a backpointer to the original packet.
*/
/*
* Copy the data from <in> to <*out> and create
* a backpointer to the original packet.
*/
k_memcpy_s(*out, sizeof(struct k_args),
in, sizeof(struct k_args));
(*out)->Ctxt.args = in;
k_memcpy_s(*out, sizeof(struct k_args),
in, sizeof(struct k_args));
(*out)->Ctxt.args = in;
}
/*******************************************************************************