Explorar o código

Fix a typo in CodingStandards.md

Closes #24596.
teor %!s(int64=6) %!d(string=hai) anos
pai
achega
7b59199663
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      doc/HACKING/CodingStandards.md

+ 1 - 1
doc/HACKING/CodingStandards.md

@@ -358,7 +358,7 @@ Don't call this `abc_free_()` function directly -- instead, wrap it in a
 macro called `abc_free()`, using the `FREE_AND_NULL` macro:
 
     void abc_free_(abc_t *obj);
-    #define abc_free(obj) FREE_AND_NULL(abc_t, abc_free_, (abc))
+    #define abc_free(obj) FREE_AND_NULL(abc_t, abc_free_, (obj))
 
 This macro will free the underlying `abc_t` object, and will also set
 the object pointer to NULL.