diff options
author | Ed Maste <emaste@FreeBSD.org> | 2014-11-25 21:00:58 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2014-11-25 21:00:58 +0000 |
commit | 0cac4ca3916ac24ab6139d03cbfd18db9e715bfe (patch) | |
tree | c94307da318be46e5aeea1a325c1e91749506e4f /source/Core/Stream.cpp | |
parent | 03b99097822ca3ac69252d9afae716a584ed56c4 (diff) |
Notes
Diffstat (limited to 'source/Core/Stream.cpp')
-rw-r--r-- | source/Core/Stream.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Core/Stream.cpp b/source/Core/Stream.cpp index 49c15d63c361..29bebb3ae3db 100644 --- a/source/Core/Stream.cpp +++ b/source/Core/Stream.cpp @@ -252,7 +252,7 @@ Stream::EOL() //------------------------------------------------------------------ // Indent the current line using the current indentation level and -// print an optional string following the idenatation spaces. +// print an optional string following the indentation spaces. //------------------------------------------------------------------ size_t Stream::Indent(const char *s) @@ -479,7 +479,7 @@ Stream::PrintfAsRawHex8 (const char *format, ...) va_list args; va_list args_copy; va_start (args, format); - va_copy (args, args_copy); // Copy this so we + va_copy (args_copy,args); // Copy this so we char str[1024]; size_t bytes_written = 0; |