# HG changeset patch # User Paul Boddie # Date 1705273462 -3600 # Node ID 122b7bcfe6f0c231669984897b38cf914f4c039d # Parent 3383382711d3e7147bbeb1196b35f96d9d7aae47 Fixed function prototype. diff -r 3383382711d3 -r 122b7bcfe6f0 libfsclient/include/fsclient/process.h --- a/libfsclient/include/fsclient/process.h Sun Jan 14 23:56:28 2024 +0100 +++ b/libfsclient/include/fsclient/process.h Mon Jan 15 00:04:22 2024 +0100 @@ -1,7 +1,7 @@ /* * Process-related convenience functions and types. * - * Copyright (C) 2023 Paul Boddie + * Copyright (C) 2023, 2024 Paul Boddie * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -48,7 +48,7 @@ /* Principal functions. */ -process_t *process_new(); +process_t *process_new(void); void process_close(process_t *process); long process_error(process_t *process); void process_free(process_t *process);