From: Peter Johnson Date: Sat, 30 Jun 2007 20:19:20 +0000 (-0000) Subject: Properly mark yasm_arch->create() error parameter as an output param. X-Git-Tag: v0.6.2~8^2~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=608d246f9379b34adda82254035585d667f2a3c4;p=yasm Properly mark yasm_arch->create() error parameter as an output param. svn path=/trunk/yasm/; revision=1888 --- diff --git a/libyasm/arch.h b/libyasm/arch.h index f6e23ae3..1daa4f37 100644 --- a/libyasm/arch.h +++ b/libyasm/arch.h @@ -114,7 +114,7 @@ typedef struct yasm_arch_module { * Call yasm_arch_create() instead of calling this function. */ /*@only@*/ yasm_arch * (*create) (const char *machine, const char *parser, - yasm_arch_create_error *error); + /*@out@*/ yasm_arch_create_error *error); /** Module-level implementation of yasm_arch_destroy(). * Call yasm_arch_destroy() instead of calling this function.