Index: trunk/core/histogram.c
===================================================================
--- trunk/core/histogram.c	(revision 928)
+++ trunk/core/histogram.c	(revision 929)
@@ -14,5 +14,5 @@
 
 static float identity(float x);
-static float locarithmic(float x);
+static float logarithmic(float x);
 
 
@@ -36,5 +36,5 @@
 }
 
-float locarithmic(float x) {
+float logarithmic(float x) {
     return log(x);
 }
@@ -43,5 +43,5 @@
     switch (mode) {
         case HISTO_MODE_LOG: 
-            histogram_transform = locarithmic; 
+            histogram_transform = logarithmic; 
             break;
         case HISTO_MODE_LINEAR: 
