lua: fix compile error

cute-signatures
Timo Teräs 2012-01-17 15:59:01 +02:00
parent 27d6c85177
commit 00fd7b07f1
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ static int Papk_exists(lua_State *L)
apk_blob_t blob = APK_BLOB_STR(depstr);
apk_blob_pull_dep(&blob, db, &dep);
if (APK_BLOB_IS_NULL(blob) || b.len > 0)
if (APK_BLOB_IS_NULL(blob) || blob.len > 0)
goto ret_nil;
name = dep.name;