From 590782c31bee8e00da674dd2edf903fe950d9119 Mon Sep 17 00:00:00 2001 From: johanknol Date: Fri, 2 Nov 2001 11:49:07 +0000 Subject: [PATCH] Why did I do this in 1.100 ?????? git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1486 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/SDCCsymt.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/SDCCsymt.c b/src/SDCCsymt.c index cf620057..35b18b01 100644 --- a/src/SDCCsymt.c +++ b/src/SDCCsymt.c @@ -1935,43 +1935,43 @@ printTypeChain (sym_link * start, FILE * of) case GPOINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* generic "); + fprintf (of, "generic * "); break; case CPOINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* code "); + fprintf (of, "code * "); break; case FPOINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* xdata "); + fprintf (of, "xdata * "); break; case EEPPOINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* eeprom "); + fprintf (of, "eeprom * "); break; case POINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* near "); + fprintf (of, "near *"); break; case IPOINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* idata "); + fprintf (of, "idata * "); break; case PPOINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* pdata "); + fprintf (of, "pdata * "); break; case UPOINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* unkown "); + fprintf (of, "unkown * "); break; case ARRAY: fprintf (of, "[] "); -- 2.47.2