r600/sfn: Fix typos.
authorVinson Lee <vlee@freedesktop.org>
Tue, 17 Nov 2020 01:06:43 +0000 (17:06 -0800)
committerVinson Lee <vlee@freedesktop.org>
Fri, 20 Nov 2020 00:39:36 +0000 (16:39 -0800)
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7649>

src/gallium/drivers/r600/sfn/sfn_nir.cpp

index db7cf2f..0620090 100644 (file)
@@ -268,7 +268,7 @@ bool ShaderFromNir::process_declaration()
    // scan declarations
    nir_foreach_shader_in_variable(variable, sh) {
       if (!impl->process_inputs(variable)) {
-         fprintf(stderr, "R600: error parsing input varible %s\n", variable->name);
+         fprintf(stderr, "R600: error parsing input variable %s\n", variable->name);
          return false;
       }
    }
@@ -276,7 +276,7 @@ bool ShaderFromNir::process_declaration()
    // scan declarations
    nir_foreach_shader_out_variable(variable, sh) {
       if (!impl->process_outputs(variable)) {
-         fprintf(stderr, "R600: error parsing outputs varible %s\n", variable->name);
+         fprintf(stderr, "R600: error parsing outputs variable %s\n", variable->name);
          return false;
       }
    }
@@ -286,7 +286,7 @@ bool ShaderFromNir::process_declaration()
                                                  nir_var_mem_ubo |
                                                  nir_var_mem_ssbo) {
       if (!impl->process_uniforms(variable)) {
-         fprintf(stderr, "R600: error parsing outputs varible %s\n", variable->name);
+         fprintf(stderr, "R600: error parsing outputs variable %s\n", variable->name);
          return false;
       }
    }