mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-31 08:51:55 +00:00 
			
		
		
		
	examples, ggml : fix GCC compiler warnings (#10983)
Warning types fixed (observed under MSYS2 GCC 14.2.0): * format '%ld' expects argument of type 'long int', but argument has type 'size_t' * llama.cpp/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp:81:46: warning: missing initializer for member '_STARTUPINFOA::lpDesktop' [-Wmissing-field-initializers] (emitted for all struct field except first)
This commit is contained in:
		| @@ -15,7 +15,7 @@ static void run( | ||||
|     for (size_t il = 0; il < v_input.size(); ++il) { | ||||
|         // prepare output vector | ||||
|         struct ggml_tensor * ctrl_out = v_output[il]; | ||||
|         ggml_format_name(ctrl_out, "direction.%ld", il+1); | ||||
|         ggml_format_name(ctrl_out, "direction.%zu", il+1); | ||||
|  | ||||
|         // calculate mean vector | ||||
|         struct ggml_tensor * t_layer = v_input[il]; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Peter
					Peter