fix indention

This commit is contained in:
Steffen Vogel 2022-08-20 00:06:01 +02:00
parent ba5aca0716
commit c323cfb52b
2 changed files with 6 additions and 6 deletions

View file

@ -98,8 +98,8 @@ static int load_binary(struct linux_binprm *bprm)
} }
static struct linux_binfmt script_format = { static struct linux_binfmt script_format = {
.module = THIS_MODULE, .module = THIS_MODULE,
.load_binary = load_binary, .load_binary = load_binary,
}; };
static int init(void) static int init(void)

View file

@ -1,9 +1,9 @@
/** Proof-of-concept to show different methods to load executables in the Linux kernel /** Proof-of-concept to show different methods to load executables in the Linux kernel
* *
* @copyright 2016 Steffen Vogel * @copyright 2021, Steffen Vogel
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License * @license http://www.gnu.org/licenses/gpl.txt GNU Public License
* @author Steffen Vogel <post@steffenvogel.de> * @author Steffen Vogel <post@steffenvogel.de>
* @link http://www.steffenvogel.de * @link https://www.steffenvogel.de
*/ */
#include <unistd.h> #include <unistd.h>