Bug 202294 - usr/src/crypto/heimdal/lib/krb5/test_store.c:228: bad expression ?
Summary: usr/src/crypto/heimdal/lib/krb5/test_store.c:228: bad expression ?
Status: New
Alias: None
Product: Base System
Classification: Unclassified
Component: misc (show other bugs)
Version: CURRENT
Hardware: Any Any
: --- Affects Some People
Assignee: freebsd-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-08-13 16:00 UTC by David Binderman
Modified: 2015-08-13 16:00 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description David Binderman 2015-08-13 16:00:52 UTC
usr/src/crypto/heimdal/lib/krb5/test_store.c:228]: (style) Same expression on both sides of '/'.

Source code is

  for (n = 0; n < sizeof(too_big_sizes) / sizeof(too_big_sizes); n++) {

Maybe

  for (n = 0; n < sizeof(too_big_sizes) / sizeof(too_big_sizes[0]); n++) {