From 31563f5759f9aeab35b566e77e6ec20b0c4589e1 Mon Sep 17 00:00:00 2001 From: Marco Wang Date: Wed, 28 Aug 2019 17:28:26 +0800 Subject: [PATCH] s3: include: printing: fix indentation of struct printif Signed-off-by: Marco Wang Reviewed-by: Andrew Bartlett Reviewed-by: Ralph Boehme --- source3/include/printing.h | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/source3/include/printing.h b/source3/include/printing.h index 8b4fb253d00..cb927412272 100644 --- a/source3/include/printing.h +++ b/source3/include/printing.h @@ -90,22 +90,22 @@ struct printjob { /* Information for print interfaces */ struct printif { - /* value of the 'printing' option for this service */ - enum printing_types type; - - int (*queue_get)(const char *printer_name, - enum printing_types printing_type, - char *lpq_command, - print_queue_struct **q, - print_status_struct *status); - int (*queue_pause)(int snum); - int (*queue_resume)(int snum); - int (*job_delete)(const char *sharename, const char *lprm_command, struct printjob *pjob); - int (*job_pause)(int snum, struct printjob *pjob); - int (*job_resume)(int snum, struct printjob *pjob); - int (*job_submit)(int snum, struct printjob *pjob, - enum printing_types printing_type, - char *lpq_command); + /* value of the 'printing' option for this service */ + enum printing_types type; + + int (*queue_get)(const char *printer_name, + enum printing_types printing_type, + char *lpq_command, + print_queue_struct **q, + print_status_struct *status); + int (*queue_pause)(int snum); + int (*queue_resume)(int snum); + int (*job_delete)(const char *sharename, const char *lprm_command, struct printjob *pjob); + int (*job_pause)(int snum, struct printjob *pjob); + int (*job_resume)(int snum, struct printjob *pjob); + int (*job_submit)(int snum, struct printjob *pjob, + enum printing_types printing_type, + char *lpq_command); }; extern struct printif generic_printif; -- 2.47.3