Silenced some harmless warnings of Fedora build process

This commit is contained in:
Thomas Schmitt 2023-07-21 09:00:53 +02:00
parent 11c5f6585a
commit 1a44cbda91
6 changed files with 8 additions and 8 deletions

View File

@ -173,6 +173,8 @@ This can be achieved either:
/* Important: If you add a public API function then add its name to file
libisoburn/libisoburn.ver
in the node LIBISOBURN1_Major.Minor.Micro with the numbers of
the next release version.
*/
@ -237,8 +239,6 @@ int isoburn_is_compatible(int major, int minor, int micro, int flag);
So micro revisions {1,3,5,7,9} should never be used for
dynamic linking unless the proper library match can be
guaranteed by external circumstances.
@return 1 success, <=0 might in future become an error indication
*/
void isoburn_version(int *major, int *minor, int *micro);
@ -2006,7 +2006,7 @@ int isoburn_igopt_set_part_type_guid(struct isoburn_imgen_opts *opts,
The option set to be inquired.
@param num_entries
Number of array elements in part_flags[].
@param type_guids
@param guids
The array elements 0 to num_entries - 1 will get filled by the
16 flag bits of the images of the corresponding partition.
@param valids

View File

@ -679,7 +679,7 @@ completed:;
3= Mon Day hh:mm:ss Year
4= YYMMDD.hhmmss
*/
char *Ftimetxt(time_t t, char timetext[40], int flag)
char *Ftimetxt(time_t t, char *timetext, int flag)
{
char *rpt;
struct tm tms, *tmpt;

View File

@ -34,7 +34,7 @@ char *Ftypetxt(mode_t st_mode, int flag);
/* @param flag bit0=with year and seconds
bit1=timestamp format YYYY.MM.DD.hhmmss
*/
char *Ftimetxt(time_t t, char timetext[40], int flag);
char *Ftimetxt(time_t t, char *timetext, int flag);
int System_uname(char **sysname, char **release, char **version,
char **machine, int flag);

View File

@ -833,7 +833,7 @@ int Sfile_make_argv(char *progname, char *line, int *argc, char ***argv,
/* @param flag bit0= append */
int Sfile_str(char target[SfileadrL], char *source, int flag)
int Sfile_str(char *target, char *source, int flag)
{
int l;

View File

@ -33,7 +33,7 @@
#define SfileadrL 4096
int Sfile_str(char target[SfileadrL], char *source, int flag);
int Sfile_str(char *target, char *source, int flag);
double Sfile_microtime(int flag);

View File

@ -1 +1 @@
#define Xorriso_timestamP "2023.07.12.182812"
#define Xorriso_timestamP "2023.07.21.070020"