79473048

Date: 2025-02-27 14:56:56
Score: 1
Natty:
Report link

The issue stems from the linefun(struct s c). Under the hood, GCC 4.4 changed how passing structs to functions work to conform to the x86_64 ABI. The warning is just to give notice to those changes.

To avoid this error, try passing a pointer rather than a struct using, fun(struct s* c).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kian Walsh