Skip to content

Commit

Permalink
2nd-init: proper indentation in include file too
Browse files Browse the repository at this point in the history
Change-Id: I8af32a09c0cd10b17fba25b504674a97d6e6616c
  • Loading branch information
tpruvot committed Mar 17, 2012
1 parent 9cbf2dd commit 677ed09
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions 2nd-init/2nd-init.h
Expand Up @@ -22,7 +22,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#define SECOND_INIT_H

/*===============================================================================
*
*
* Signature of calling execve (syscall 11)
*
* execve:
Expand All @@ -34,10 +34,11 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* HEX: 90002DE9 0B70A0E3 000000EF 9000BDE8
===============================================================================*/

char execve_code[] = { 0x90, 0x00, 0x2D, 0xE9,
0x0B, 0x70, 0xA0, 0xE3,
0x00, 0x00, 0x00, 0xEF,
0x90, 0x00, 0xBD, 0xE8 };


char execve_code[] = {
0x90, 0x00, 0x2D, 0xE9,
0x0B, 0x70, 0xA0, 0xE3,
0x00, 0x00, 0x00, 0xEF,
0x90, 0x00, 0xBD, 0xE8
};
#endif //!SECOND_INIT_H

0 comments on commit 677ed09

Please sign in to comment.