From a50dc1917b62f92e760593756ecc470b5baa261c Mon Sep 17 00:00:00 2001
From: Erwan Jahier <erwan.jahier@univ-grenoble-alpes.fr>
Date: Wed, 20 Mar 2019 15:18:58 +0100
Subject: [PATCH] Fix: do use the empty string as the action name when no
 action is registred

---
 lib/sasacore/process.ml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/sasacore/process.ml b/lib/sasacore/process.ml
index 6a7d2679..ed319e2a 100644
--- a/lib/sasacore/process.ml
+++ b/lib/sasacore/process.ml
@@ -1,4 +1,4 @@
-(* Time-stamp: <modified the 13/03/2019 (at 10:01) by Erwan Jahier> *)
+(* Time-stamp: <modified the 20/03/2019 (at 13:07) by Erwan Jahier> *)
 
 type t = {
   pid : string;
@@ -44,7 +44,7 @@ let (make: bool -> Topology.node -> t) =
       with _ ->
         if custom_mode then
           failwith "Registering actions is mandatory in algorithms when using custom demon!"
-        else [""]
+        else ["a"]
     in
     let process = {
       pid = pid; 
-- 
GitLab