Browse Source

command-not-found: Mark local functions as static

See #565.
android-5
Fredrik Fornwall 8 years ago
parent
commit
86b760f627
  1. 4
      packages/command-not-found/command-not-found.c

4
packages/command-not-found/command-not-found.c

@ -4,11 +4,11 @@
#include "commands.h" #include "commands.h"
inline int termux_min3(unsigned int a, unsigned int b, unsigned int c) { static inline int termux_min3(unsigned int a, unsigned int b, unsigned int c) {
return (a < b ? (a < c ? a : c) : (b < c ? b : c)); return (a < b ? (a < c ? a : c) : (b < c ? b : c));
} }
int termux_levenshtein_distance(char const* restrict s1, char const* restrict s2) { static int termux_levenshtein_distance(char const* restrict s1, char const* restrict s2) {
unsigned int s1len = strlen(s1); unsigned int s1len = strlen(s1);
unsigned int s2len = strlen(s2); unsigned int s2len = strlen(s2);
unsigned int matrix[s2len+1][s1len+1]; unsigned int matrix[s2len+1][s1len+1];

Loading…
Cancel
Save