8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 16:03:02 +01:00

The same error was corrected many time ago in pag or sdw; fortunately this is debugging file only.

This commit is contained in:
robocop 2009-11-20 10:27:46 +00:00
parent c7ef2cb502
commit 336002d5cd

View File

@ -695,8 +695,8 @@ static void dmp_header(const header_page* page)
SLONG number;
const char* p = (SCHAR *) page->hdr_data;
for (const char* const end = p + page->hdr_page_size; p < end && *p != HDR_end; p += 2 + p[1])
const UCHAR* p = (UCHAR*) page->hdr_data;
for (const UCHAR* const end = p + page->hdr_page_size; p < end && *p != HDR_end; p += 2 + p[1])
{
switch (*p)
{