浏览代码

Fix an MSVC build error (bugzilla 29570).

tags/mesa-7.9-rc1
Vinson Lee 15 年前
父节点
当前提交
07ca55b7fa
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/glsl/glcpp/glcpp-parse.y

+ 1
- 1
src/glsl/glcpp/glcpp-parse.y 查看文件

@@ -32,7 +32,7 @@
#include "main/mtypes.h"

#define glcpp_print(stream, str) stream = talloc_strdup_append(stream, str)
#define glcpp_printf(stream, fmt, args...) \
#define glcpp_printf(stream, fmt, args, ...) \
stream = talloc_asprintf_append(stream, fmt, args)

static void

正在加载...
取消
保存