auto-sync
This commit is contained in:
parent
25379ba68e
commit
c3fcc68448
|
@ -402,7 +402,8 @@ void scheduleLogging(Logging *logging) {
|
|||
resetLogging(logging);
|
||||
return;
|
||||
}
|
||||
strcpy(accumulationBuffer + accumulatedSize, logging->buffer);
|
||||
// memcpy is faster then strcpy because it is not looking for line terminator
|
||||
memcpy(accumulationBuffer + accumulatedSize, logging->buffer, newLength + 1);
|
||||
accumulatedSize += newLength;
|
||||
if (!alreadyLocked) {
|
||||
unlockOutputBuffer();
|
||||
|
|
|
@ -262,5 +262,5 @@ void firmwareError(const char *fmt, ...) {
|
|||
}
|
||||
|
||||
int getRusEfiVersion(void) {
|
||||
return 20141119;
|
||||
return 20141121;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// This file was generated by Version2Header
|
||||
// Wed Nov 19 10:50:16 EST 2014
|
||||
// Fri Nov 21 11:57:01 EST 2014
|
||||
#ifndef VCS_VERSION
|
||||
#define VCS_VERSION "5449"
|
||||
#define VCS_VERSION "5450"
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue