diff --git a/autobuild.xml b/autobuild.xml
index 461183b6223ebfa998d341f5191dbac17d82cdc9..e48bcabc7715cbfadcd5fda7f82edc5df510f4ed 100755
--- a/autobuild.xml
+++ b/autobuild.xml
@@ -998,9 +998,9 @@
             <key>archive</key>
             <map>
               <key>hash</key>
-              <string>e52d7ec430004fc2a59e4dbf6f3b704e</string>
+              <string>c788a259125bdbee7e362ff4a7b9fb4f</string>
               <key>url</key>
-              <string>https://bitbucket.org/alchemyviewer/publiclibs-darwin/downloads/google_breakpad-1400-darwin-201411052348.tar.bz2</string>
+              <string>https://bitbucket.org/alchemyviewer/publiclibs-darwin/downloads/google_breakpad-1411-darwin-20141216.tar.bz2</string>
             </map>
             <key>name</key>
             <string>darwin</string>
diff --git a/indra/llcommon/llbase64.cpp b/indra/llcommon/llbase64.cpp
index cc116259080f09af503db8d9d7da3af5fe164080..a0fb7985cebe0201f1359e57455ee23bbe7c1c4a 100755
--- a/indra/llcommon/llbase64.cpp
+++ b/indra/llcommon/llbase64.cpp
@@ -44,7 +44,7 @@ std::string LLBase64::encode(const U8* input, size_t input_size)
 	bio = BIO_push(b64, bio);
 	BIO_write(bio, input, input_size);
 	
-	BIO_flush(bio);
+	(void)BIO_flush(bio);
 	
 	char *new_data;
 	size_t bytes_written = BIO_get_mem_data(bio, &new_data);