-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a formatting error in db.copy #62
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please commit the suggested changes from clang-format.
Suggestions can only be added to lines near lines changed in this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please commit the suggested changes from clang-format.
Suggestions can only be added to lines near lines changed in this PR.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
…made for other files
… and no suggestions were made
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
… output after message of other files
file with spaces.c
Outdated
* | ||
*****************************************************************************/ | ||
|
||
#include <stdlib.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[clang-format] reported by reviewdog 🐶
#include <stdlib.h> | |
#include <stdlib.h> |
file with spaces.c
Outdated
{ | ||
|
||
int ret; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[clang-format] reported by reviewdog 🐶
} | |
} |
file with special some%0Athing.c
Outdated
int main(int | ||
argc , char **argv) | ||
{ | ||
int ret ; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[clang-format] reported by reviewdog 🐶
int main(int | |
argc , char **argv) | |
{ | |
int ret ; | |
} | |
int main(int argc, char **argv) | |
{ | |
int ret; | |
} |
file with special some;thing.c
Outdated
|
||
#include <stdlib.h> | ||
|
||
int main( int argc, char **argv) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[clang-format] reported by reviewdog 🐶
int main( int argc, char **argv) | |
int main(int argc, char **argv) |
file with special some;thing.c
Outdated
|
||
int main( int argc, char **argv) | ||
{ | ||
int ret; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[clang-format] reported by reviewdog 🐶
int ret; | |
int ret; |
f593a35
to
d606f67
Compare
int main(int argc, char * *argv) | ||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[clang-format] reported by reviewdog 🐶
int main(int argc, char * *argv) | |
{ | |
int main(int argc, char **argv) | |
{ |
struct Option * where, *select; | ||
struct GModule * module ; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[clang-format] reported by reviewdog 🐶
struct Option * where, *select; | |
struct GModule * module ; | |
struct Option *where, *select; | |
struct GModule *module; |
No description provided.