Reviewed-by: Marek Olšák <[email protected]>

M.

On Sep 20, 2017 7:48 AM, "Nicolai Hähnle" <[email protected]> wrote:

> From: Nicolai Hähnle <[email protected]>
>
> There's no reason to use va_copy here.
>
> CID: 1418113
> ---
> I have a slight preference for this variant.
> --
>  src/amd/addrlib/core/addrobject.cpp | 8 ++------
>  1 file changed, 2 insertions(+), 6 deletions(-)
>
> diff --git a/src/amd/addrlib/core/addrobject.cpp b/src/amd/addrlib/core/
> addrobject.cpp
> index dcdb1bffc2b..452feb5fac0 100644
> --- a/src/amd/addrlib/core/addrobject.cpp
> +++ b/src/amd/addrlib/core/addrobject.cpp
> @@ -209,29 +209,25 @@ VOID Object::operator delete(
>  ************************************************************
> ****************************************
>  */
>  VOID Object::DebugPrint(
>      const CHAR* pDebugString,     ///< [in] Debug string
>      ...
>      ) const
>  {
>  #if DEBUG
>      if (m_client.callbacks.debugPrint != NULL)
>      {
> -        va_list ap;
> -
> -        va_start(ap, pDebugString);
> -
>          ADDR_DEBUGPRINT_INPUT debugPrintInput = {0};
>
>          debugPrintInput.size         = sizeof(ADDR_DEBUGPRINT_INPUT);
>          debugPrintInput.pDebugString = const_cast<CHAR*>(pDebugString);
>          debugPrintInput.hClient      = m_client.handle;
> -        va_copy(debugPrintInput.ap, ap);
> +        va_start(debugPrintInput.ap, pDebugString);
>
>          m_client.callbacks.debugPrint(&debugPrintInput);
>
> -        va_end(ap);
> +        va_end(debugPrintInput.ap);
>      }
>  #endif
>  }
>
>  } // Addr
> --
> 2.11.0
>
> _______________________________________________
> mesa-dev mailing list
> [email protected]
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
>
_______________________________________________
mesa-dev mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to