diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-29 08:48:38 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-29 08:48:38 +0000 |
commit | 8b91e4abcad0766b30bcadfda4b4c87c3c87fa75 (patch) | |
tree | aaf4d7bce21d2dcfa863823b2f73b6639d6c0f22 | |
parent | 873b8b9750ad316169b43f72ebb97f718878303f (diff) |
2002-05-29 Roland McGrath <roland@frob.com>
* elfcore.c (dump_core): int -> size_t
-rw-r--r-- | exec/elfcore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exec/elfcore.c b/exec/elfcore.c index 16904a8c..69f4161a 100644 --- a/exec/elfcore.c +++ b/exec/elfcore.c @@ -495,7 +495,7 @@ dump_core (task_t task, file_t file, off_t corelimit, do { pointer_t copied; - int copy_count; + size_t copy_count; err = vm_read (task, va, sz, &copied, ©_count); if (err == 0) { |