Skip to content

Commit b4d5d30

Browse files
Emilio LopesEmilio Lopes
authored andcommitted
Fix warning concerning return value of non-void function
1 parent 32f13fd commit b4d5d30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/portable/NetworkInterface/STM32/NetworkInterface.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2029,7 +2029,7 @@ NetworkInterface_t * pxSTM32_FillInterfaceDescriptor( BaseType_t xEMACIndex,
20292029
NetworkInterface_t * pxFillInterfaceDescriptor( BaseType_t xEMACIndex,
20302030
NetworkInterface_t * pxInterface )
20312031
{
2032-
pxSTM32_FillInterfaceDescriptor( xEMACIndex, pxInterface );
2032+
return pxSTM32_FillInterfaceDescriptor( xEMACIndex, pxInterface );
20332033
}
20342034

20352035
#endif

0 commit comments

Comments
 (0)