X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;ds=sidebyside;f=int%2Fsds.c;h=6b96c6cae708f67b2e56be7577b5f883f3762c46;hb=2baa7d4b9df523436b38a4a7a0d9cb4e75fb527c;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(""); }