chiark / gitweb /
tuntap: Do not build on non-Linux platforms.
[chiark-tcl.git] / base / idtable.c
index ae175b665f2908fdd894e79a8eb77c760c01f02f..6e7aafaa1562c94b8f16398acc4a6acfb42622cc 100644 (file)
@@ -77,14 +77,12 @@ int cht_tabledataid_parse(Tcl_Interp *ip, Tcl_Obj *o, const IdDataSpec *idds) {
   int l;
   unsigned long ul;
   IdDataValue *dv;
-  IdDataAssocData *assoc;
   char *ep, *str;
 
   if (o->typePtr != &cht_tabledataid_nearlytype) goto convert;
 
   dv= o->internalRep.otherValuePtr;
   if (dv->interp != ip) goto convert;
-  assoc= dv->assoc;
   if (dv->assoc->idds != idds) goto convert;
 
   return TCL_OK;