view src/os/win32/ngx_dlopen.c @ 7202:a49af443656f

HTTP/2: fixed build with -Werror=unused-but-set-variable.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 08 Feb 2018 12:11:30 +0300
parents 7142b04337d6
children
line wrap: on
line source


/*
 * Copyright (C) Maxim Dounin
 * Copyright (C) Nginx, Inc.
 */


#include <ngx_config.h>
#include <ngx_core.h>


char *
ngx_dlerror(void)
{
    u_char         *p;
    static u_char   errstr[NGX_MAX_ERROR_STR];

    p = ngx_strerror(ngx_errno, errstr, NGX_MAX_ERROR_STR);
    *p = '\0';

    return (char *) errstr;
}