diff options
| author | David Lamparter <equinox@diac24.net> | 2020-03-27 12:51:47 +0100 | 
|---|---|---|
| committer | David Lamparter <equinox@diac24.net> | 2020-07-14 10:43:40 +0200 | 
| commit | 6cde4b45528e52819c803de92d10d4be3abddf29 (patch) | |
| tree | 745ba8e073b939160c79a55b36d538100811d660 /zebra/zebra_nb_state.c | |
| parent | 3efd0893d01696b680325679077382992d4eb33f (diff) | |
*: remove PRI[udx](8|16|32)
These are completely pointless and break coccinelle string replacements.
Scripted commit, idempotent to running:
```
python3 tools/stringmangle.py --pri8-16-32 `git ls-files | egrep '\.[ch]$'`
```
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'zebra/zebra_nb_state.c')
| -rw-r--r-- | zebra/zebra_nb_state.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_nb_state.c b/zebra/zebra_nb_state.c index 4bca3b36d6..4374da360e 100644 --- a/zebra/zebra_nb_state.c +++ b/zebra/zebra_nb_state.c @@ -188,7 +188,7 @@ int lib_vrf_zebra_ribs_rib_get_keys(struct nb_cb_get_keys_args *args)  	snprintfrr(args->keys->key[0], sizeof(args->keys->key[0]), "%s:%s",  		   "frr-zebra",  		   zebra_afi_safi_value2identity(zrt->afi, zrt->safi)); -	snprintfrr(args->keys->key[1], sizeof(args->keys->key[1]), "%" PRIu32, +	snprintfrr(args->keys->key[1], sizeof(args->keys->key[1]), "%u",  		   zrt->tableid);  	return NB_OK;  | 
