VirtualBox

Changeset 1427 in vbox for trunk


Ignore:
Timestamp:
Mar 12, 2007 2:04:18 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
19441
Message:

fixed BIOS guest log

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/PC/BIOS/rombios.c

    r1364 r1427  
    15811581void put_str(action, s)
    15821582  Bit16u action;
    1583   char *s;
     1583  Bit8u *s;
    15841584{
     1585  Bit8u c;
    15851586  if (!s)
    15861587    s = "<NULL>";
    1587   else
    1588     while (*s != 0)
    1589       send(action, *s++);
     1588
     1589  while (c = read_byte(get_CS(), s)) {
     1590    send(action, c);
     1591    s++;
     1592  }
    15901593}
    15911594#endif /* VBOX */
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette