X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=int%2Fsds.c;h=6b96c6cae708f67b2e56be7577b5f883f3762c46;hb=6e3b45dd6cef95c1577a91b15a1256fa4b06ca88;hp=80c31f95b9951a2978a86870ad657e9497b295da;hpb=64f379e7446a716257f6030157f2cb254200aa7b;p=mTask.git diff --git a/int/sds.c b/int/sds.c index 80c31f9..6b96c6c 100644 --- a/int/sds.c +++ b/int/sds.c @@ -73,6 +73,7 @@ void sds_publish(int id) } } debug("SDS identifier unknown: %d", id); + die(""); } int sds_fetch(int id) @@ -82,6 +83,7 @@ int sds_fetch(int id) if(sdss[cs].used && sdss[cs].id == id) return sdss[cs].value; debug("SDS identifier unknown: %d", id); + die(""); return 0; } @@ -95,4 +97,5 @@ void sds_store(int id, int val) } } debug("SDS identifier unknown: %d", id); + die(""); }