Changeset 2589 for trunk/src


Ignore:
Timestamp:
Feb 1, 2000, 9:08:54 AM (26 years ago)
Author:
bird
Message:

Cosmetical changes in messages displayed during boot.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/dev16/probkrnl.c

    r2501 r2589  
    1 /* $Id: probkrnl.c,v 1.6 2000-01-22 18:20:56 bird Exp $
     1/* $Id: probkrnl.c,v 1.7 2000-02-01 08:08:54 bird Exp $
    22 *
    33 * Description:   Autoprobes the os2krnl file and os2krnl[*].sym files.
     
    4949#define DWORD unsigned long int
    5050
    51 /* "@#IBM:14.020#@    os2krnl... "*/
     51/* "@#IBM:14.039#@    os2krnl... "*/
     52/* "@#IBM:8.264#@    os2krnl... "*/
    5253#define KERNEL_ID_STRING_LENGTH  42
    5354#define KERNEL_READ_SIZE        512
     
    6667#include <reqpkt.h>
    6768
    68 #include "os2krnl.h" /* must be included before dev1632.h! */
     69#include "os2krnl.h"                    /* must be included before dev1632.h! */
    6970#include "sym.h"
    7071#include "probkrnl.h"
     
    140141/* messages */
    141142static char szBanner[]   = "Win32k - Odin32 support driver.";
    142 static char szMsg1[]     = "\n\r\tFound kernel: ";
    143 static char szMsg1a[]    = "\n\r\tBuild: ";
    144 static char szMsg2[]     = "\n\r\tFound symbolfile: ";
    145 static char szMsg4[]     = "\n\r\tFailed to find symbolfile!\n\r";
    146 static char szMsgfailed[]= "failed!";
     143static char szMsg1[]     = "\n\r    Found kernel:    ";
     144static char szMsg1a[]    = "\n\r    Build:            ";
     145static char szMsg2[]     = "\n\r    Found symbolfile: ";
     146static char szMsg4[]     = "\n\r    Failed to find symbolfile!\n\r";
     147static char szMsgfailed[]= "failed!   ";
    147148
    148149
     
    909910            for (i = 0; i < NUMBER_OF_PROCS; i++)
    910911            {
    911                 puts("\n\r\t");
     912                if ((i % 2) == 0)
     913                    puts("\n\r    ");
     914                else
     915                    puts("    ");
    912916                puts(aProcTab[i].achName);
    913                 for (j = aProcTab[i].cchName; j < 17; j++)
     917                for (j = aProcTab[i].cchName; j < 20; j++)
    914918                    puts(" ");
    915919
Note: See TracChangeset for help on using the changeset viewer.