gsubprocess: Add missing (nullable) annotation to get_identifier()

The bottom of the documentation comment for this symbol seems to have
been missing.

Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
Philip Withnall 2019-05-31 23:38:58 +01:00
parent 7f256e63d0
commit 799caf772b

View File

@ -749,6 +749,11 @@ g_subprocess_newv (const gchar * const *argv,
*
* On UNIX, returns the process ID as a decimal string.
* On Windows, returns the result of GetProcessId() also as a string.
* If the subprocess has terminated, this will return %NULL.
*
* Returns: (nullable): the subprocess identifier, or %NULL if the subprocess
* has terminated
* Since: 2.40
*/
const gchar *
g_subprocess_get_identifier (GSubprocess *subprocess)