|
|
|
|
|
by thetic
1580 days ago
|
|
Sure. This may not be a feasible approach for this case. I'm just pointing out alternative approaches to mitigate this kind of scoping problem in C89. Maybe wrap every use of list_for_each_entry in braces? {
list_for_each_entry(...)
}
|
|