ralloc: Move declarations before statements.
authorJosé Fonseca <jfonseca@vmware.com>
Thu, 18 Apr 2013 05:21:04 +0000 (06:21 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Thu, 18 Apr 2013 05:21:04 +0000 (06:21 +0100)
Trivial.  Should fix MSVC build.

src/glsl/ralloc.c

index 02816425221f9adc3105d73c07726a7bfac74a17..e79dad764bbc4fc9cb8f1afa3c7772a261fab1cd 100644 (file)
@@ -107,11 +107,13 @@ void *
 ralloc_size(const void *ctx, size_t size)
 {
    void *block = calloc(1, size + sizeof(ralloc_header));
+   ralloc_header *info;
+   ralloc_header *parent;
 
    if (unlikely(block == NULL))
       return NULL;
-   ralloc_header *info = (ralloc_header *) block;
-   ralloc_header *parent = ctx != NULL ? get_header(ctx) : NULL;
+   info = (ralloc_header *) block;
+   parent = ctx != NULL ? get_header(ctx) : NULL;
 
    add_child(parent, info);