aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorPaul Eggert2011-04-05 22:19:39 -0700
committerPaul Eggert2011-04-05 22:19:39 -0700
commit41cf7d1aec986e1b92ca14231ac4ec242c233d45 (patch)
tree7360e455dc2e0043a31fda1d29cc6323aa213104 /src/alloc.c
parent1e3cdd8228651f226beb6ac75453968a6c64feff (diff)
parentb69769da408705e40929b793d79d3bfe6a3a5a48 (diff)
downloademacs-41cf7d1aec986e1b92ca14231ac4ec242c233d45.tar.gz
emacs-41cf7d1aec986e1b92ca14231ac4ec242c233d45.zip
Fix more problems found by GCC 4.6.0's static checks.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 07f1caae46b..54c4760abab 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -5221,7 +5221,7 @@ int last_marked_index;
5221 links of a list, in mark_object. In debugging, 5221 links of a list, in mark_object. In debugging,
5222 the call to abort will hit a breakpoint. 5222 the call to abort will hit a breakpoint.
5223 Normally this is zero and the check never goes off. */ 5223 Normally this is zero and the check never goes off. */
5224static int mark_object_loop_halt; 5224static size_t mark_object_loop_halt;
5225 5225
5226static void 5226static void
5227mark_vectorlike (struct Lisp_Vector *ptr) 5227mark_vectorlike (struct Lisp_Vector *ptr)
@@ -5278,7 +5278,7 @@ mark_object (Lisp_Object arg)
5278 void *po; 5278 void *po;
5279 struct mem_node *m; 5279 struct mem_node *m;
5280#endif 5280#endif
5281 int cdr_count = 0; 5281 size_t cdr_count = 0;
5282 5282
5283 loop: 5283 loop:
5284 5284