diff options
author | Vinson Lee <vlee@vmware.com> | 2009-12-26 16:22:25 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2009-12-26 16:22:25 -0800 |
commit | 331e910b5c4b2d2c940991e11027fa8f7dee0e8b (patch) | |
tree | cf6296e140ef60fc94d20647ba47da07e9182896 | |
parent | 3c2fd1bae0009ea8231cd77001595f27d6171f7b (diff) |
gallium/util: Remove comma at end of enumerator list.
-rw-r--r-- | src/gallium/auxiliary/util/u_format.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_format.h b/src/gallium/auxiliary/util/u_format.h index 7b5b7fcda5..bd27f34692 100644 --- a/src/gallium/auxiliary/util/u_format.h +++ b/src/gallium/auxiliary/util/u_format.h @@ -79,7 +79,7 @@ enum util_format_colorspace { UTIL_FORMAT_COLORSPACE_RGB = 0, UTIL_FORMAT_COLORSPACE_SRGB = 1, UTIL_FORMAT_COLORSPACE_YUV = 2, - UTIL_FORMAT_COLORSPACE_ZS = 3, + UTIL_FORMAT_COLORSPACE_ZS = 3 }; |