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
RiscOS
S
Sources
H
HWSupport
U
USB
Controllers
MUSBDriver
Commits
6d64761f
Commit
6d64761f
authored
May 06, 2014
by
Robert Sprowson
Browse files
Missing va_end() added
Version 0.20. Tagged as 'MUSBDriver-0_20'
parent
cdcbfd8a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
10 deletions
+12
-10
VersionNum
VersionNum
+10
-10
c/port
c/port
+2
-0
No files found.
VersionNum
View file @
6d64761f
/* (0.
19
)
/* (0.
20
)
*
* This file is automatically maintained by srccommit, do not edit manually.
* Last processed by srccommit version: 1.1.
*
*/
#define Module_MajorVersion_CMHG 0.
19
#define Module_MajorVersion_CMHG 0.
20
#define Module_MinorVersion_CMHG
#define Module_Date_CMHG
3
0 Ma
r
201
3
#define Module_Date_CMHG 0
6
Ma
y
201
4
#define Module_MajorVersion "0.
19
"
#define Module_Version
19
#define Module_MajorVersion "0.
20
"
#define Module_Version
20
#define Module_MinorVersion ""
#define Module_Date "
3
0 Ma
r
201
3
"
#define Module_Date "0
6
Ma
y
201
4
"
#define Module_ApplicationDate "
3
0-Ma
r
-1
3
"
#define Module_ApplicationDate "0
6
-Ma
y
-1
4
"
#define Module_ComponentName "MUSBDriver"
#define Module_ComponentPath "mixed/RiscOS/Sources/HWSupport/USB/Controllers/MUSBDriver"
#define Module_FullVersion "0.
19
"
#define Module_HelpVersion "0.
19 (30
Ma
r
201
3
)"
#define Module_LibraryVersionInfo "0:
19
"
#define Module_FullVersion "0.
20
"
#define Module_HelpVersion "0.
20 (06
Ma
y
201
4
)"
#define Module_LibraryVersionInfo "0:
20
"
c/port
View file @
6d64761f
...
...
@@ -105,6 +105,7 @@ void panic (const char* str, ...)
dprintf
((
"Port"
,
"panicking:"
));
dvprintf
((
"Port"
,
str
,
p
));
vsnprintf
(
panic_string
,
sizeof
panic_string
,
str
,
p
);
va_end
(
p
);
}
void
...
...
@@ -428,6 +429,7 @@ void logprintf (char* format, ...)
va_list
p
;
va_start
(
p
,
format
);
dvprintf
((
"Log"
,
format
,
p
));
va_end
(
p
);
}
#ifdef USB_USE_SOFTINTR
...
...
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