You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2008/08/27 20:47:27 UTC

svn commit: r689557 - /incubator/couchdb/branches/json_term_changes/src/couchdb/couch_util.erl

Author: damien
Date: Wed Aug 27 11:47:27 2008
New Revision: 689557

URL: http://svn.apache.org/viewvc?rev=689557&view=rev
Log:
Fix compile error

Modified:
    incubator/couchdb/branches/json_term_changes/src/couchdb/couch_util.erl

Modified: incubator/couchdb/branches/json_term_changes/src/couchdb/couch_util.erl
URL: http://svn.apache.org/viewvc/incubator/couchdb/branches/json_term_changes/src/couchdb/couch_util.erl?rev=689557&r1=689556&r2=689557&view=diff
==============================================================================
--- incubator/couchdb/branches/json_term_changes/src/couchdb/couch_util.erl (original)
+++ incubator/couchdb/branches/json_term_changes/src/couchdb/couch_util.erl Wed Aug 27 11:47:27 2008
@@ -225,7 +225,7 @@
 %%
 %% decodeBase64(BinaryChars) -> Binary
 %%
-decodeBase64(Cs) is_list(Cs)->
+decodeBase64(Cs) when is_list(Cs)->
     decodeBase64(list_to_binary(Cs));
 decodeBase64(Cs) ->
     decode1(Cs, <<>>).