From c0df259726ae6ceed8aaef3441550d01310fafc0 Mon Sep 17 00:00:00 2001 From: Ruben Ayrapetyan Date: Wed, 23 Jul 2014 12:56:34 +0400 Subject: [PATCH] Renaming ecma_GC_info_t -> ecma_gc_info_t (missed this renaming in previous commit). --- src/libecmaobjects/ecma-globals.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libecmaobjects/ecma-globals.h b/src/libecmaobjects/ecma-globals.h index 96f3e1b83..2b4365deb 100644 --- a/src/libecmaobjects/ecma-globals.h +++ b/src/libecmaobjects/ecma-globals.h @@ -267,7 +267,7 @@ typedef struct { /** Compressed pointer to next object in the list of objects, queued for GC (if !IsObjectValid) */ unsigned int NextQueuedForGC : ECMA_POINTER_FIELD_WIDTH; } __packed u; -} ecma_GC_info_t; +} ecma_gc_info_t; /** * Types of lexical environments @@ -321,7 +321,7 @@ typedef struct ecma_object_t { } __packed u; /** GC's information */ - ecma_GC_info_t GCInfo; + ecma_gc_info_t GCInfo; } ecma_object_t; /**