Mercurial > emacs
comparison src/unexec.c @ 105426:d0a6d64c3cfc
Fix typos in comments.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Sun, 04 Oct 2009 02:58:53 +0000 |
parents | e038c1a8307c |
children | 68dd71358159 |
comparison
equal
deleted
inserted
replaced
105425:02f737c16cc4 | 105426:d0a6d64c3cfc |
---|---|
496 && errno == EFAULT | 496 && errno == EFAULT |
497 #endif | 497 #endif |
498 ) | 498 ) |
499 { | 499 { |
500 /* Write only a page of zeros at once, | 500 /* Write only a page of zeros at once, |
501 so that we we don't overshoot the start | 501 so that we don't overshoot the start |
502 of the valid memory in the old data segment. */ | 502 of the valid memory in the old data segment. */ |
503 if (nwrite > pagesize) | 503 if (nwrite > pagesize) |
504 nwrite = pagesize; | 504 nwrite = pagesize; |
505 write (new, zeros, nwrite); | 505 write (new, zeros, nwrite); |
506 } | 506 } |