smp: Remove unreachable initializer
Execution in this block will start with any of the case statements, never with the initialization.
This commit is contained in:
@@ -76,7 +76,8 @@ static void write_id(xmlTextWriterPtr writer, char *element, identification_t *i
|
|||||||
switch (id->get_type(id))
|
switch (id->get_type(id))
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
char *type = "";
|
char *type;
|
||||||
|
|
||||||
while (TRUE)
|
while (TRUE)
|
||||||
{
|
{
|
||||||
case ID_ANY:
|
case ID_ANY:
|
||||||
|
|||||||
Reference in New Issue
Block a user