debug_commands: align user_data to 64bits

It is cast to a struct with 64bit fields, so it should be aligned
properly.

Change-Id: I513cfba4d8fc4f4286b13edabc47fbbda3227bf6
Reviewed-on: https://review.haiku-os.org/c/1089
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
This commit is contained in:
PulkoMandy 2019-02-23 18:24:17 +01:00 committed by waddlesplash
parent 14ffc38e44
commit df19aba5e9

View File

@ -27,7 +27,7 @@ typedef struct debugger_command_pipe_segment {
int argc;
char** argv;
int32 invocations;
uint32 user_data[8]; // can be used by the command
uint64 user_data[4]; // can be used by the command
} debugger_command_pipe_segment;
typedef struct debugger_command_pipe {