summaryrefslogtreecommitdiffstats
path: root/src/ogAdmLib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ogAdmLib.c')
-rw-r--r--src/ogAdmLib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ogAdmLib.c b/src/ogAdmLib.c
index 1706148..d6de4e6 100644
--- a/src/ogAdmLib.c
+++ b/src/ogAdmLib.c
@@ -60,7 +60,7 @@ char* escaparCadena(char *cadena)
buffer = (char*) calloc(1, strlen(cadena)*2); // Toma memoria para el buffer de conversión
if (buffer == NULL) { // No hay memoria suficiente para el buffer
- return (FALSE);
+ return NULL;
}
c=b=0;