3fbf447a56
- no-return-in-nonvoid-function.patch: fix no-return-in-nonvoid-function error OBS-URL: https://build.opensuse.org/request/show/284155 OBS-URL: https://build.opensuse.org/package/show/shells/fish?expand=0&rev=9
13 lines
289 B
Diff
13 lines
289 B
Diff
Index: fish-2.1.1/fallback.cpp
|
|
===================================================================
|
|
--- fish-2.1.1.orig/fallback.cpp
|
|
+++ fish-2.1.1/fallback.cpp
|
|
@@ -61,6 +61,7 @@ int tputs(const char *str, int affcnt, i
|
|
{
|
|
fish_putc(*str++);
|
|
}
|
|
+ return 0;
|
|
}
|
|
|
|
#endif
|