Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Julie Stamp
RISC_OSLib
Commits
5786bf53
Commit
5786bf53
authored
24 years ago
by
Kevin Bracey
Browse files
Options
Download
Email Patches
Plain Diff
printf specifier %#x corrected to prepend "0x" instead of "0X".
Version 5.17. Tagged as 'RISC_OSLib-5_17'
parent
5810d878
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
18 deletions
+18
-18
VersionASM
VersionASM
+7
-7
VersionNum
VersionNum
+10
-10
c/printf
c/printf
+1
-1
No files found.
VersionASM
View file @
5786bf53
...
...
@@ -9,12 +9,12 @@
GBLS Module_ApplicationDate2
GBLS Module_ApplicationDate4
GBLS Module_HelpVersion
Module_MajorVersion SETS "5.1
6
"
Module_Version SETA 51
6
Module_MajorVersion SETS "5.1
7
"
Module_Version SETA 51
7
Module_MinorVersion SETS ""
Module_Date SETS "0
2
Oct 2000"
Module_ApplicationDate2 SETS "0
2
-Oct-00"
Module_ApplicationDate4 SETS "0
2
-Oct-2000"
Module_FullVersion SETS "5.1
6
"
Module_HelpVersion SETS "5.1
6
(0
2
Oct 2000)"
Module_Date SETS "0
3
Oct 2000"
Module_ApplicationDate2 SETS "0
3
-Oct-00"
Module_ApplicationDate4 SETS "0
3
-Oct-2000"
Module_FullVersion SETS "5.1
7
"
Module_HelpVersion SETS "5.1
7
(0
3
Oct 2000)"
END
This diff is collapsed.
Click to expand it.
VersionNum
View file @
5786bf53
/* (5.1
6
)
/* (5.1
7
)
*
* This file is automatically maintained by srccommit, do not edit manually.
*
*/
#define Module_MajorVersion_CMHG 5.1
6
#define Module_MajorVersion_CMHG 5.1
7
#define Module_MinorVersion_CMHG
#define Module_Date_CMHG 0
2
Oct 2000
#define Module_Date_CMHG 0
3
Oct 2000
#define Module_MajorVersion "5.1
6
"
#define Module_Version 51
6
#define Module_MajorVersion "5.1
7
"
#define Module_Version 51
7
#define Module_MinorVersion ""
#define Module_Date "0
2
Oct 2000"
#define Module_Date "0
3
Oct 2000"
#define Module_ApplicationDate2 "0
2
-Oct-00"
#define Module_ApplicationDate4 "0
2
-Oct-2000"
#define Module_ApplicationDate2 "0
3
-Oct-00"
#define Module_ApplicationDate4 "0
3
-Oct-2000"
#define Module_FullVersion "5.1
6
"
#define Module_HelpVersion "5.1
6
(0
2
Oct 2000)"
#define Module_FullVersion "5.1
7
"
#define Module_HelpVersion "5.1
7
(0
3
Oct 2000)"
This diff is collapsed.
Click to expand it.
c/printf
View file @
5786bf53
...
...
@@ -372,7 +372,7 @@ int __vfprintf(FILE *p, const char *fmt, va_list args,
case
'x'
:
v
=
va_arg
(
args
,
int
);
if
(
flags
&
_SHORTSPEC
)
v
=
(
unsigned
short
)
v
;
hextab
=
"0123456789abcdef"
;
prefix
=
((
flags
&
_VARIANT
)
!=
0
&&
v
!=
0
)
?
"0
X
"
:
""
;
prefix
=
((
flags
&
_VARIANT
)
!=
0
&&
v
!=
0
)
?
"0
x
"
:
""
;
if
(
flags
&
_PRECGIVEN
)
flags
&=
~
_PADZERO
;
break
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment