]> git.proxmox.com Git - mirror_qemu.git/blobdiff - bsd-user/freebsd/target_os_stack.h
Merge tag 'hppa64-fixes-pull-request' of https://github.com/hdeller/qemu-hppa into...
[mirror_qemu.git] / bsd-user / freebsd / target_os_stack.h
index 059013329153d9a7143a5d5deb76bcce72220132..d15fc3263fcdfcf33455a7a8ad26ea4bd2c3be51 100644 (file)
@@ -25,7 +25,7 @@
 #include "qemu/guest-random.h"
 
 /*
- * The inital FreeBSD stack is as follows:
+ * The initial FreeBSD stack is as follows:
  * (see kern/kern_exec.c exec_copyout_strings() )
  *
  *  Hi Address -> char **ps_argvstr  (struct ps_strings for ps, w, etc.)
@@ -59,7 +59,7 @@ static inline int setup_initial_stack(struct bsd_binprm *bprm,
     /* Save some space for ps_strings. */
     p -= sizeof(struct target_ps_strings);
 
-    /* Add machine depedent sigcode. */
+    /* Add machine dependent sigcode. */
     p -= TARGET_SZSIGCODE;
     if (setup_sigtramp(p, (unsigned)offsetof(struct target_sigframe, sf_uc),
             TARGET_FREEBSD_NR_sigreturn)) {