Fix errors from gcc upgrade 49/222549/2 accepted/tizen/unified/20200116.112358 submit/tizen/20200116.062044
authorYunjin Lee <yunjin-.lee@samsung.com>
Thu, 16 Jan 2020 04:37:50 +0000 (13:37 +0900)
committerYunjin Lee <yunjin-.lee@samsung.com>
Thu, 16 Jan 2020 04:56:12 +0000 (13:56 +0900)
commit2bb56357982e5089ac8646b76783c8dd1e755357
treec32dca397a2da60a4b8dd0edf86a28720a5c4483
parentac41b720715801461368f7fd67068cdb7435fd4f
Fix errors from gcc upgrade

- We know that the number of privacies is under 100 so it never will
exceed the length of counter but gcc determined it might cause a problem
so change the size of counter enough

- int can have [-21474836472147483647] value and if it is printed as
char then it will use 1~11 bytes. We knew that privacy num will not exceed
2bytes so assined 10 bytes for counter. But gcc says it should be enough
size for 2 int and 3 byte chars, so I fixed the size of counter enough.

Change-Id: Id9f3a47d806d5f962688f2fbb581168ce5657aa1
Signed-off-by: Yunjin Lee <yunjin-.lee@samsung.com>
ui/src/popup.c