View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0000840 | LDMud 3.5 | Compilation, Installation | public | 2015-01-31 07:44 | 2015-02-01 17:51 |
Reporter | Leonidas | Assigned To | zesstra | ||
Priority | normal | Severity | major | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 3.5.0 | ||||
Target Version | 3.5.0 | Fixed in Version | 3.5.0 | ||
Summary | 0000840: Typo in sprintf.c leads to compile error | ||||
Description | sprintf.c: In Funktion »string_print_formatted«: sprintf.c:2245:24: Fehler: verirrtes »\302« im Programm else if ( signi || !isize) ^ sprintf.c:2245:24: Fehler: verirrtes »\240« im Programm <builtin>: recipe for target 'sprintf.o' failed make: *** [sprintf.o] Error 1 | ||||
Tags | No tags attached. | ||||
Attached Files | 0001-erroneous-240-in-program.patch (940 bytes)
From 5e9e2f02005ed9463a79a923e29f04ce7fe951d6 Mon Sep 17 00:00:00 2001 From: Christian Georg Becker <krischan@flunzel.de> Date: Sat, 31 Jan 2015 08:40:43 +0100 Subject: [PATCH] =?UTF-8?q?erroneous=20=C2=BB\240=C2=AB=20in=20program?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christian Georg Becker <krischan@flunzel.de> --- src/sprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sprintf.c b/src/sprintf.c index d2e68b5..9aab8a4 100644 --- a/src/sprintf.c +++ b/src/sprintf.c @@ -2242,7 +2242,7 @@ add_table_now: strcat( temp, "1" ); --tmpl; } - else if ( signi || !isize) + else if ( signi || !isize) { strcat( temp, "0" ); --tmpl; -- 2.1.4 | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2015-01-31 07:44 | Leonidas | New Issue | |
2015-01-31 07:44 | Leonidas | File Added: 0001-erroneous-240-in-program.patch | |
2015-02-01 17:46 | zesstra | Assigned To | => zesstra |
2015-02-01 17:46 | zesstra | Status | new => assigned |
2015-02-01 17:50 | zesstra | Project | LDMud => LDMud 3.5 |
2015-02-01 17:51 | zesstra | Product Version | => 3.5.0 |
2015-02-01 17:51 | zesstra | Target Version | => 3.5.0 |
2015-02-01 17:51 | zesstra | Note Added: 0002244 | |
2015-02-01 17:51 | zesstra | Status | assigned => resolved |
2015-02-01 17:51 | zesstra | Fixed in Version | => 3.5.0 |
2015-02-01 17:51 | zesstra | Resolution | open => fixed |