diff options
author | Willy Tarreau <w@1wt.eu> | 2008-09-03 16:33:38 +0200 |
---|---|---|
committer | Willy Tarreau <w@1wt.eu> | 2008-09-03 16:36:30 +0200 |
commit | a75ac7c43fbaa18f73ba094425067692459f669a (patch) | |
tree | 550996a13cc64fe95852513080e92e041ae22c9a | |
parent | wdd: add checks for changes on a status file (diff) | |
download | flxutils-a75ac7c43fbaa18f73ba094425067692459f669a.tar.xz |
mii-diag: fix build failure with recent gcc in tulip-diag.c
-rw-r--r-- | mii/tulip-diag.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mii/tulip-diag.c b/mii/tulip-diag.c index 7036b26..b399442 100644 --- a/mii/tulip-diag.c +++ b/mii/tulip-diag.c @@ -1338,10 +1338,10 @@ static void parse_eeprom(unsigned char *ee_data, int flags) /* Should actually do a fix-up based on the vendor half of the station
address prefix here. Or least use that information to report which
transceiver will work. */
- printf(" * An old-style EEPROM layout was found.
- * The old-style layout does not contain transceiver control information.
- * This board may not work, or may work only with a subset of transceiver
- * options or data rates.\n");
+ printf(" * An old-style EEPROM layout was found."
+ "* The old-style layout does not contain transceiver control information."
+ "* This board may not work, or may work only with a subset of transceiver"
+ "* options or data rates.\n");
return;
} else if (ee_data[27] == 0) {
printf(" A simplifed EEPROM data table was found.\n"
|