summaryrefslogtreecommitdiff
path: root/crashrep/source/win32/base64.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'crashrep/source/win32/base64.cpp')
-rw-r--r--crashrep/source/win32/base64.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/crashrep/source/win32/base64.cpp b/crashrep/source/win32/base64.cpp
index 82d54fb4e16d..3f2e852377e5 100644
--- a/crashrep/source/win32/base64.cpp
+++ b/crashrep/source/win32/base64.cpp
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -25,7 +25,7 @@
* for a copy of the LGPLv3 License.
*
************************************************************************/
-
+
#include <stdio.h>
#include <string.h>
#include "base64.h"
@@ -50,7 +50,7 @@ extern "C" size_t base64_encode( FILE *fin, FILE *fout )
if ( nBytes )
{
- unsigned long value =
+ unsigned long value =
((unsigned long)in_buffer[0]) << 16 |
((unsigned long)in_buffer[1]) << 8 |
((unsigned long)in_buffer[2]) << 0;