[FTFD] Fix indentation

svn path=/trunk/; revision=75612
This commit is contained in:
Timo Kreuzer 2017-08-18 15:02:01 +00:00
parent 7a47c14c8f
commit 45720ed145

View file

@ -44,7 +44,7 @@ malloc(size_t Size)
void *Object; void *Object;
Object = EngAllocMem(0, sizeof(size_t) + Size, TAG_FREETYPE); Object = EngAllocMem(0, sizeof(size_t) + Size, TAG_FREETYPE);
if (NULL != Object) if (Object != NULL)
{ {
*((size_t *)Object) = Size; *((size_t *)Object) = Size;
Object = (void *)((size_t *)Object + 1); Object = (void *)((size_t *)Object + 1);
@ -60,7 +60,7 @@ realloc(void *Object, size_t Size)
size_t CopySize; size_t CopySize;
NewObject = EngAllocMem(0, sizeof(size_t) + Size, TAG_FREETYPE); NewObject = EngAllocMem(0, sizeof(size_t) + Size, TAG_FREETYPE);
if (NULL != NewObject) if (NewObject != NULL)
{ {
*((size_t *)NewObject) = Size; *((size_t *)NewObject) = Size;
NewObject = (void *)((size_t *)NewObject + 1); NewObject = (void *)((size_t *)NewObject + 1);
@ -94,7 +94,6 @@ FILE *
fopen(const char *FileName, const char *Mode) fopen(const char *FileName, const char *Mode)
{ {
DPRINT1("Freetype tries to open file %s\n", FileName); DPRINT1("Freetype tries to open file %s\n", FileName);
return NULL; return NULL;
} }
@ -102,7 +101,6 @@ int
fseek(FILE *Stream, long Offset, int Origin) fseek(FILE *Stream, long Offset, int Origin)
{ {
DPRINT1("Doubleplus ungood: freetype shouldn't fseek!\n"); DPRINT1("Doubleplus ungood: freetype shouldn't fseek!\n");
return -1; return -1;
} }
@ -110,7 +108,6 @@ long
ftell(FILE *Stream) ftell(FILE *Stream)
{ {
DPRINT1("Doubleplus ungood: freetype shouldn't ftell!\n"); DPRINT1("Doubleplus ungood: freetype shouldn't ftell!\n");
return -1; return -1;
} }
@ -118,7 +115,6 @@ size_t
fread(void *Buffer, size_t Size, size_t Count, FILE *Stream) fread(void *Buffer, size_t Size, size_t Count, FILE *Stream)
{ {
DPRINT1("Doubleplus ungood: freetype shouldn't fread!\n"); DPRINT1("Doubleplus ungood: freetype shouldn't fread!\n");
return 0; return 0;
} }
@ -126,6 +122,5 @@ int
fclose(FILE *Stream) fclose(FILE *Stream)
{ {
DPRINT1("Doubleplus ungood: freetype shouldn't fclose!\n"); DPRINT1("Doubleplus ungood: freetype shouldn't fclose!\n");
return EOF; return EOF;
} }