Fix indentation.

Wed Mar 22 16:49:57 2000  Owen Taylor  <otaylor@redhat.com>

	* gmem.c (g_mem_chunk_area_compare): Fix indentation.
This commit is contained in:
Owen Taylor 2000-03-22 21:59:16 +00:00 committed by Owen Taylor
parent 916d4db104
commit e0786b05e6
10 changed files with 60 additions and 20 deletions

View File

@ -1,6 +1,11 @@
Wed Mar 22 16:49:57 2000 Owen Taylor <otaylor@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix indentation.
2000-03-22 Elliot Lee <sopwith@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in comparing two pointers more
than 4G apart.
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in
comparing two pointers more than 4G apart.
2000-03-22 Tor Lillqvist <tml@iki.fi>

View File

@ -1,6 +1,11 @@
Wed Mar 22 16:49:57 2000 Owen Taylor <otaylor@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix indentation.
2000-03-22 Elliot Lee <sopwith@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in comparing two pointers more
than 4G apart.
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in
comparing two pointers more than 4G apart.
2000-03-22 Tor Lillqvist <tml@iki.fi>

View File

@ -1,6 +1,11 @@
Wed Mar 22 16:49:57 2000 Owen Taylor <otaylor@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix indentation.
2000-03-22 Elliot Lee <sopwith@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in comparing two pointers more
than 4G apart.
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in
comparing two pointers more than 4G apart.
2000-03-22 Tor Lillqvist <tml@iki.fi>

View File

@ -1,6 +1,11 @@
Wed Mar 22 16:49:57 2000 Owen Taylor <otaylor@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix indentation.
2000-03-22 Elliot Lee <sopwith@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in comparing two pointers more
than 4G apart.
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in
comparing two pointers more than 4G apart.
2000-03-22 Tor Lillqvist <tml@iki.fi>

View File

@ -1,6 +1,11 @@
Wed Mar 22 16:49:57 2000 Owen Taylor <otaylor@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix indentation.
2000-03-22 Elliot Lee <sopwith@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in comparing two pointers more
than 4G apart.
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in
comparing two pointers more than 4G apart.
2000-03-22 Tor Lillqvist <tml@iki.fi>

View File

@ -1,6 +1,11 @@
Wed Mar 22 16:49:57 2000 Owen Taylor <otaylor@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix indentation.
2000-03-22 Elliot Lee <sopwith@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in comparing two pointers more
than 4G apart.
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in
comparing two pointers more than 4G apart.
2000-03-22 Tor Lillqvist <tml@iki.fi>

View File

@ -1,6 +1,11 @@
Wed Mar 22 16:49:57 2000 Owen Taylor <otaylor@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix indentation.
2000-03-22 Elliot Lee <sopwith@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in comparing two pointers more
than 4G apart.
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in
comparing two pointers more than 4G apart.
2000-03-22 Tor Lillqvist <tml@iki.fi>

View File

@ -1,6 +1,11 @@
Wed Mar 22 16:49:57 2000 Owen Taylor <otaylor@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix indentation.
2000-03-22 Elliot Lee <sopwith@redhat.com>
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in comparing two pointers more
than 4G apart.
* gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in
comparing two pointers more than 4G apart.
2000-03-22 Tor Lillqvist <tml@iki.fi>

View File

@ -932,9 +932,9 @@ g_mem_chunk_area_compare (GMemArea *a,
GMemArea *b)
{
if (a->mem > b->mem)
return 1;
return 1;
else if (a->mem < b->mem)
return -1;
return -1;
return 0;
}

4
gmem.c
View File

@ -932,9 +932,9 @@ g_mem_chunk_area_compare (GMemArea *a,
GMemArea *b)
{
if (a->mem > b->mem)
return 1;
return 1;
else if (a->mem < b->mem)
return -1;
return -1;
return 0;
}